mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-22 00:22:16 +07:00
10 lines
179 B
Java
10 lines
179 B
Java
class Test {
|
|
|
|
public String getString() {
|
|
return <selection>StaticInner.STRING</selection>;
|
|
}
|
|
|
|
static class StaticInner {
|
|
public static String STRING = "aaaa";
|
|
}
|
|
} |