f60a7ffab0
#KT-4578 Fixed
7 lines
213 B
Plaintext
Vendored
7 lines
213 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
|
|
} |