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