mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 15:53:37 +00:00
16 lines
177 B
Kotlin
16 lines
177 B
Kotlin
class Z() {
|
|
|
|
inner class Z2(val s: String) {
|
|
|
|
}
|
|
|
|
fun a(): String {
|
|
val s = Z() Z2 "OK"
|
|
return s.s
|
|
}
|
|
}
|
|
|
|
fun box(): String {
|
|
return Z().a()
|
|
}
|