blob: 7f24c0f5ac54a9186174fb2d477b8f6164e9474f [file] [log] [blame]
import static java.lang.Integer.MAX_VALUE;
class StaticImport {
void test() {
newMethod();
}
private void newMethod() {
System.out.println(MAX_VALUE);
}
}