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

15 lines
201 B
Kotlin
Vendored

class Foo(private val s: String) {
inner class Inner {
private val x = {
this@Foo.s
}()
}
val f = Inner()
}
fun box(): String {
Foo("!")
return "OK"
}