12 lines
145 B
Kotlin
Vendored
12 lines
145 B
Kotlin
Vendored
package p.q
|
|
|
|
val a = 1
|
|
fun foo() = 1
|
|
|
|
// SIBLING:
|
|
class MyClass {
|
|
fun test() {
|
|
<selection>p.q.foo()
|
|
p.q.a</selection>
|
|
}
|
|
} |