blob: 34a50d00af6f5c8baffd0aa0a33ca9acea454c8c [file] [log] [blame]
class Outer {
inner class Inner {
fun O() = this@Outer.O
val K = this@Outer.K()
}
val O = "O"
fun K() = "K"
}
fun box() = Outer().Inner().O() + Outer().Inner().K