Files
kotlin-fork/idea/testData/intentions/movePropertyToConstructor/annotationWithUseSite.kt.after.as36
T
2020-05-08 19:13:28 +07:00

11 lines
300 B
Plaintext
Vendored

annotation class Annotation1(val a: Int = 0)
annotation class Annotation2(val a: Int = 0)
annotation class Annotation3(val a: Int = 0)
class TestClass(
private @property:Annotation1(42) @field:Annotation2(42) @Annotation1(42) @Annotation3(
42
) val text: String = "LoremIpsum"
) {
}