mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 00:11:26 +07:00
more java tests moved to community
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
// "Invert If Condition" "true"
|
||||
class K {
|
||||
private void bar(int i) {
|
||||
switch(i) {
|
||||
case 0:
|
||||
<caret>if (f(i)) {
|
||||
return;
|
||||
}
|
||||
i = 1;
|
||||
break;
|
||||
case 1:
|
||||
i = 2;
|
||||
}
|
||||
}
|
||||
|
||||
private static boolean f(int i) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user