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

7 lines
170 B
Kotlin
Vendored

annotation class AnnWithVararg(vararg val value: String, val s: String)
interface Result {
@AnnWithVararg(<caret>value = ["foo", "bar"], s = "")
val res2: Any
}