Files
kotlin/idea/testData/quickfix/replaceWithArrayCallInAnnotation/literalWithValues.kt
Mikhail Zarechenskiy 8ab7c26cae Provide quick fix for named arguments to varargs in annotations
See more in KT-20171
2017-09-26 14:49:43 +03:00

8 lines
148 B
Kotlin
Vendored

// "Replace with array call" "true"
// LANGUAGE_VERSION: 1.2
annotation class Some(vararg val ints: Int)
@Some(ints = *[1, 2,<caret> 3])
class My