mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-13 08:31:31 +00:00
16 lines
302 B
Kotlin
16 lines
302 B
Kotlin
class A {
|
|
private class object {
|
|
class B {
|
|
class C {
|
|
class object {
|
|
fun foo() {}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
fun f1() = <!INVISIBLE_MEMBER!>A<!>.B.C
|
|
|
|
fun f2() = <!INVISIBLE_MEMBER!>A<!>.B.C.<!INVISIBLE_MEMBER!>foo<!>()
|