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