mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 00:21:29 +00:00
15 lines
306 B
Kotlin
15 lines
306 B
Kotlin
class A {
|
|
private companion object {
|
|
class B {
|
|
class C {
|
|
companion object {
|
|
fun foo() {}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
fun f1() = A.Companion.B.<!INVISIBLE_MEMBER!>C<!>
|
|
|
|
fun f2() = A.Companion.B.C.<!INVISIBLE_MEMBER!>foo<!>() |