10 lines
130 B
Kotlin
Vendored
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
|
|
}
|