Files
kotlin-fork/idea/testData/intentions/convertPropertyToFunction/javaUsageAsField.1.java.after
T
2015-02-05 23:12:38 +03:00

9 lines
125 B
Plaintext

import test.O;
import static test.O.foo;
class J {
void test() {
int n = O.foo();
int m = foo();
}
}