10 lines
137 B
Kotlin
Vendored
10 lines
137 B
Kotlin
Vendored
fun box() : String {
|
|
val o = object {
|
|
|
|
inner class C {
|
|
fun foo() = "OK"
|
|
}
|
|
}
|
|
return o.C().foo()
|
|
}
|