mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 08:31:30 +00:00
Includes changes to decompiled text Old syntax is used in builtins and project code for now
30 lines
400 B
Kotlin
30 lines
400 B
Kotlin
package foo
|
|
|
|
fun test() {
|
|
A.d
|
|
A.Default.<!INVISIBLE_MEMBER!>f<!>
|
|
B.<!INVISIBLE_MEMBER!>D<!>
|
|
<!INVISIBLE_MEMBER!>CCC<!>
|
|
CCC.<!INVISIBLE_MEMBER!>classObjectVar<!>
|
|
}
|
|
|
|
class A() {
|
|
public default object {
|
|
val d = 3
|
|
private object f {
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
class B {
|
|
class D {
|
|
private default object
|
|
}
|
|
}
|
|
|
|
class CCC() {
|
|
private default object {
|
|
val classObjectVar = 3
|
|
}
|
|
} |