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

9 lines
99 B
Kotlin
Vendored

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