f60a7ffab0
#KT-4578 Fixed
8 lines
287 B
Plaintext
Vendored
8 lines
287 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) text: String = "LoremIpsum") {
|
|
private @Annotation1(42) @field:Annotation2(42) val text = text
|
|
} |