fe599463ac
Intention Move to class body generates incorrect code for vararg val/var #KT-18978 Fixed
4 lines
189 B
Kotlin
Vendored
4 lines
189 B
Kotlin
Vendored
@Target(AnnotationTarget.VALUE_PARAMETER)
|
|
annotation class ParameterAnnotation(val a: Int = 0)
|
|
|
|
class TestClass(private vararg @ParameterAnnotation(42) val <caret>words: String = arrayOf()) |