mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-03 20:33:31 +07:00
GitOrigin-RevId: 95a81fcd1546afec31afc2a044a9ba5fa1337411
12 lines
223 B
Java
12 lines
223 B
Java
// "Fix all 'Constant values' 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();
|
|
}
|
|
}
|
|
} |