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

5 lines
200 B
Kotlin
Vendored

@Target(AnnotationTarget.PROPERTY, AnnotationTarget.FIELD)
annotation class PropertyAnnotation(val a: Int = 0)
class TestClass(private @PropertyAnnotation(42) val <caret>text: String = "LoremIpsum")