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

5 lines
204 B
Kotlin
Vendored

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