mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 00:11:26 +07:00
test++
This commit is contained in:
+10
@@ -0,0 +1,10 @@
|
||||
class Test {
|
||||
int foo(int i) {
|
||||
return new Object() {
|
||||
private int InnerClass(int i) {
|
||||
if (i == 0) return -1;
|
||||
return foo(i - 1);
|
||||
}
|
||||
}.InnerClass(i);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user