blob: 2a986e0a17294e770061201c1e7899f82e398aa0 [file] [log] [blame]
@Target(AnnotationTarget.PROPERTY, AnnotationTarget.FIELD)
annotation class PropertyAnnotation(val a: Int = 0)
class TestClass(text: String = "LoremIpsum") {
private @PropertyAnnotation(42)
val text = text
}