mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 08:31:35 +00:00
18 lines
264 B
Plaintext
Vendored
18 lines
264 B
Plaintext
Vendored
// SIBLING:
|
|
class MyClass {
|
|
fun test() {
|
|
__dummyTestFun__()
|
|
}
|
|
|
|
public class P {
|
|
companion object {
|
|
val a = 1
|
|
fun foo() = 1
|
|
}
|
|
}
|
|
}
|
|
|
|
private fun __dummyTestFun__() {
|
|
MyClass.P.foo()
|
|
MyClass.P.a
|
|
} |