10 lines
116 B
Kotlin
Vendored
10 lines
116 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
annotation class My
|
|
|
|
fun foo() {
|
|
val s = object {
|
|
@My fun bar() {}
|
|
}
|
|
s.bar()
|
|
}
|