mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 15:53:55 +00:00
16 lines
213 B
Plaintext
Vendored
16 lines
213 B
Plaintext
Vendored
// SIBLING:
|
|
class MyClass {
|
|
fun test() {
|
|
__dummyTestFun__()
|
|
}
|
|
|
|
object P {
|
|
val a = 1
|
|
fun foo() = 1
|
|
}
|
|
}
|
|
|
|
private fun __dummyTestFun__() {
|
|
MyClass.P.foo()
|
|
MyClass.P.a
|
|
} |