Files

6 lines
139 B
Kotlin
Vendored

class My {
var x: String = ""
set(<!WRONG_MODIFIER_CONTAINING_DECLARATION!>vararg<!> value) {
x = value
}
}