Files
kotlin-fork/compiler/testData/ir/box/closureConversion/innerClass1.kt
T
2016-10-19 19:13:40 +03:00

8 lines
116 B
Kotlin
Vendored

class Outer {
val x = "O"
inner class Inner {
val y = x + "K"
}
}
fun box() = Outer().Inner().y