Files
kotlin-fork/idea/testData/refactoring/extractFunction/parameters/misc/qualifiedPackage.kt
T

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>
}
}