Files
kotlin/compiler/testData/diagnostics/tests/annotations/AnnotatedLocalObjectProperty.kt

9 lines
113 B
Kotlin
Vendored

annotation class My
fun foo(): Int {
val s = object {
@My val bar: Int = 0
}
return s.bar
}