Files
kotlin-fork/idea/testData/intentions/movePropertyToClassBody/propertyAnnotation.kt.after
T
2017-07-19 15:03:00 +02:00

8 lines
217 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
}