Files
kotlin-fork/idea/testData/intentions/movePropertyToConstructor/withoutMatchingParameter.kt.after
T
Dmitry Gridin 11a3482970 tests: apply official code style
#KT-38632 Fixed
2020-05-07 12:36:44 +00:00

9 lines
337 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(@Annotation1(42) @Annotation3(42) initialText: String = "LoremIpsum",
private @property:Annotation1(42) @field:Annotation2(42) val text: String = "dolor sit amet"
) {
}