mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 00:21:32 +00:00
15 lines
165 B
Plaintext
15 lines
165 B
Plaintext
package Jet86
|
|
|
|
~A~class A {
|
|
class object {
|
|
~A.x~val x = 1
|
|
}
|
|
}
|
|
|
|
~B~class B() {
|
|
~B.x~val x = 12
|
|
}
|
|
|
|
val a = `A`A.`A.x`x
|
|
val c = `B`B.`B.x`x
|
|
val d = B().`B.x`x |