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