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

10 lines
116 B
Kotlin
Vendored

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