Files
kotlin-fork/backend.native/tests/external/codegen/box/closures/kt4106.kt
T
2017-03-13 15:31:46 +03:00

15 lines
201 B
Kotlin

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