f60a7ffab0
#KT-4578 Fixed
5 lines
200 B
Kotlin
Vendored
5 lines
200 B
Kotlin
Vendored
|
|
@Target(AnnotationTarget.PROPERTY, AnnotationTarget.FIELD)
|
|
annotation class PropertyAnnotation(val a: Int = 0)
|
|
|
|
class TestClass(private @PropertyAnnotation(42) val <caret>text: String = "LoremIpsum") |