c032a02373
#KT-20588 Fixed #KT-20589 Fixed
9 lines
235 B
Kotlin
Vendored
9 lines
235 B
Kotlin
Vendored
// "Replace with array call" "true"
|
|
// COMPILER_ARGUMENTS: -XXLanguage:+ProhibitAssigningSingleElementsToVarargsInNamedForm
|
|
// DISABLE-ERRORS
|
|
|
|
annotation class Some(vararg val strings: String)
|
|
|
|
@Some(strings = <caret>"value")
|
|
class My
|