mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-23 07:14:21 +07:00
15 lines
254 B
Java
15 lines
254 B
Java
import Enclosing.constants;
|
|
|
|
class Enclosing {
|
|
static class constants {
|
|
public static final String CONSTANT = null;
|
|
}
|
|
}
|
|
|
|
class Test {
|
|
void f() {
|
|
String constants = Enclosing.constants.CONSTANT;
|
|
System.out.println(constants);
|
|
}
|
|
}
|