mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 06:05:01 +07:00
test++
This commit is contained in:
+15
@@ -0,0 +1,15 @@
|
||||
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 {}
|
||||
}
|
||||
Reference in New Issue
Block a user