mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 15:54:03 +00:00
7 lines
134 B
Kotlin
Vendored
7 lines
134 B
Kotlin
Vendored
class Outer(val x: String) {
|
|
inner class Inner(val y: String) {
|
|
val z = x + y
|
|
}
|
|
}
|
|
|
|
fun box() = Outer("O").Inner("K").z |