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

10 lines
130 B
Kotlin
Vendored

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