Files
kotlin-fork/idea/testData/inspectionsLocal/replaceArrayOfWithLiteral/intArray.kt
T
2017-05-16 20:44:12 +03:00

7 lines
116 B
Kotlin
Vendored

// LANGUAGE_VERSION: 1.2
annotation class Some(val nums: IntArray)
@Some(nums = <caret>intArrayOf(1, 2))
class My