mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 00:21:32 +00:00
14 lines
216 B
Kotlin
Vendored
14 lines
216 B
Kotlin
Vendored
// SIBLING:
|
|
class MyClass {
|
|
fun test() {
|
|
<selection>P.foo()
|
|
P.a</selection>
|
|
}
|
|
|
|
public class P {
|
|
companion object {
|
|
val a = 1
|
|
fun foo() = 1
|
|
}
|
|
}
|
|
} |