8 lines
116 B
Kotlin
Vendored
8 lines
116 B
Kotlin
Vendored
class Outer {
|
|
val x = "O"
|
|
inner class Inner {
|
|
val y = x + "K"
|
|
}
|
|
}
|
|
|
|
fun box() = Outer().Inner().y |