mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-17 02:33:48 +07:00
9 lines
139 B
Java
9 lines
139 B
Java
class Outer {
|
|
private String string;
|
|
|
|
class Inner extends Outer {
|
|
void test() {
|
|
System.out.println(<ref>string);
|
|
}
|
|
}
|
|
} |