Files
kotlin-fork/compiler/testData/diagnostics/tests/annotations/AnnotatedLocalObjectProperty.kt
T

9 lines
113 B
Kotlin
Vendored

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