e079b8f425
#KT-2187 Fixed
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
|
|
}
|