mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
10 lines
198 B
Java
10 lines
198 B
Java
// "Remove statement" "false"
|
|
class Test {
|
|
void test(int x) {
|
|
if(x > -5) {
|
|
System.out.println("ok");
|
|
} else i<caret>f(x > 0) {} else {
|
|
System.out.println("not ok");
|
|
}
|
|
}
|
|
} |