9 lines
121 B
Java
9 lines
121 B
Java
import test.O;
|
|
import static test.O.foo;
|
|
|
|
class J {
|
|
void test() {
|
|
int n = O.foo;
|
|
int m = foo;
|
|
}
|
|
} |