mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-14 00:21:34 +00:00
9 lines
198 B
Kotlin
Vendored
9 lines
198 B
Kotlin
Vendored
class A {
|
|
class Nested(val result: String)
|
|
inner class Inner(val result: String)
|
|
}
|
|
|
|
fun box(): String {
|
|
return (A::Nested).call("O").result + (A::Inner).call((::A).call(), "K").result
|
|
}
|