Files
kotlin-fork/idea/testData/multiFileIntentions/moveToCompanion/moveFunction/after/test2/usages.java
T
Alexey Sedunov d13ac6b5a4 Intentions: Move class member to companion object
#KT-9697 In Progress
2016-02-04 12:26:18 +03:00

9 lines
107 B
Java
Vendored

package test2;
import test.A;
class Test {
void foo() {
A.Companion.test(new A(), 1);
}
}