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

7 lines
208 B
Kotlin
Vendored

// ERROR: The feature "array literals in annotations" is only available since language version 1.2
annotation class Some(val strings: Array<String>)
@Some(<caret>arrayOf("alpha", "beta", "omega"))
class My