mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-10 18:09:38 +07:00
12 lines
201 B
Java
12 lines
201 B
Java
class Test {
|
|
|
|
public static final String xxx = StaticInner.STRING;
|
|
|
|
public String getString() {
|
|
return xxx;
|
|
}
|
|
|
|
static class StaticInner {
|
|
public static String STRING = "aaaa";
|
|
}
|
|
} |