mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 03:13:40 +07:00
move CompleteStatementTest to java-tests
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
public abstract class A {
|
||||
abstract void f(boolean b);
|
||||
|
||||
A IMPL = new A() {
|
||||
void f(boolean b) {
|
||||
if (b)
|
||||
f(true);
|
||||
else {
|
||||
f(false);
|
||||
f(false);
|
||||
}
|
||||
for(int i = 0; i < 5; i++)
|
||||
f(true);
|
||||
}
|
||||
}; <caret>
|
||||
}
|
||||
Reference in New Issue
Block a user