16 lines
189 B
Plaintext
16 lines
189 B
Plaintext
// SIBLING:
|
|
class MyClass {
|
|
fun test() {
|
|
unit()
|
|
}
|
|
|
|
object P {
|
|
val a = 1
|
|
fun foo() = 1
|
|
}
|
|
}
|
|
|
|
private fun unit() {
|
|
MyClass.P.foo()
|
|
MyClass.P.a
|
|
} |