mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 15:09:39 +07:00
12 lines
240 B
Java
12 lines
240 B
Java
// "Fix all 'Constant conditions & exceptions' problems in file" "true"
|
|
public class Test {
|
|
void foo2() {
|
|
int k = 0;
|
|
int i = 0;
|
|
assert i <caret>== k;
|
|
assert i == k;
|
|
if (i == k) {
|
|
System.out.println();
|
|
}
|
|
}
|
|
} |