mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 08:31:29 +00:00
16 lines
303 B
Kotlin
Vendored
16 lines
303 B
Kotlin
Vendored
fun box(): String {
|
|
class Local {
|
|
open inner class Inner(val s: String) {
|
|
open fun result() = "Fail"
|
|
}
|
|
|
|
val realResult = "OK"
|
|
|
|
val obj = object : Inner(realResult) {
|
|
override fun result() = s
|
|
}
|
|
}
|
|
|
|
return Local().obj.result()
|
|
}
|