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

7 lines
213 B
Plaintext
Vendored

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