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

12 lines
165 B
Kotlin

// SIBLING:
class MyClass {
fun test() {
<selection>P.foo()
P.a</selection>
}
object P {
val a = 1
fun foo() = 1
}
}