mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 00:21:32 +00:00
14 lines
311 B
Kotlin
Vendored
14 lines
311 B
Kotlin
Vendored
// TODO: muted automatically, investigate should it be ran for JS or not
|
|
// IGNORE_BACKEND: JS
|
|
|
|
// WITH_REFLECT
|
|
|
|
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
|
|
}
|