Files
kotlin-fork/compiler/testData/codegen/box/closures/kt3152.kt
T

14 lines
187 B
Kotlin
Vendored

public class Test {
val content = 1
inner class A {
val v = object {
fun f() = content
}
}
}
fun box(): String {
Test().A()
return "OK"
}