mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-06-18 00:59:57 +07:00
15 lines
324 B
Java
15 lines
324 B
Java
class Test {
|
|
public void contextChild() {
|
|
StInner inner1 = new StInner();
|
|
Test.InstInner inner2 = this.new InstInner();
|
|
}
|
|
|
|
void foo() {
|
|
StInner inner1 = new StInner();
|
|
Test.InstInner inner2 = this.new InstInner();
|
|
}
|
|
|
|
public static class StInner {}
|
|
|
|
public class InstInner {}
|
|
} |