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