Files
kotlin-fork/idea/testData/intentions/movePropertyToClassBody/parameterAnnotation.kt.after
T
2017-03-24 15:22:50 +03:00

7 lines
217 B
Plaintext
Vendored

@Target(AnnotationTarget.VALUE_PARAMETER)
annotation class ParameterAnnotation(val a: Int = 0)
class TestClass(@ParameterAnnotation(42) text: String = "LoremIpsum", val flag: Boolean) {
private val text = text
}