951392005b
#KT-14950 Fixed
8 lines
217 B
Plaintext
Vendored
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
|
|
} |