Files
kotlin-fork/idea/testData/intentions/movePropertyToClassBody/varargWithAnnotation.kt.after
T
2017-08-01 20:42:40 +03:00

6 lines
204 B
Plaintext
Vendored

@Target(AnnotationTarget.VALUE_PARAMETER)
annotation class ParameterAnnotation(val a: Int = 0)
class TestClass(@ParameterAnnotation(42) vararg words: String = arrayOf()) {
private val words = words
}