Files
kotlin/idea/testData/quickfix/replaceWithArrayCallInAnnotation/emptyLiteral.kt.after
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
149 B
Plaintext
Vendored

// "Replace with array call" "true"
// LANGUAGE_VERSION: 1.2
annotation class Some(vararg val strings: String)
@Some(strings = <caret>[])
class My