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

16 lines
189 B
Plaintext

// SIBLING:
class MyClass {
fun test() {
unit()
}
object P {
val a = 1
fun foo() = 1
}
}
private fun unit() {
MyClass.P.foo()
MyClass.P.a
}