Files
kotlin-fork/idea/testData/inspectionsLocal/replaceArrayOfWithLiteral/intArray.kt.after
T

7 lines
173 B
Plaintext
Vendored

// ERROR: The feature "array literals in annotations" is only available since language version 1.2
annotation class Some(val nums: IntArray)
@Some(nums = [1, 2])
class My