Files
kotlin-fork/idea/testData/intentions/removeArgumentName/arrayLiteral.kt
T

7 lines
145 B
Kotlin
Vendored

annotation class AnnWithArray(val value: Array<String>)
interface Result {
@AnnWithArray(<caret>value = ["foo", "bar"])
val res1: Any
}