Files
kotlin-fork/idea/testData/intentions/moveOutOfCompanion/moveFunction.kt.after
T
2016-02-04 12:26:19 +03:00

16 lines
131 B
Plaintext
Vendored

class A {
companion object {
class B {
}
}
fun bar() {
foo()
}
fun foo() {
}
}