mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-02 22:51:01 +07:00
15 lines
266 B
Java
15 lines
266 B
Java
// "Merge sequential 'if' statements" "true-preview"
|
|
|
|
class ImplicitOr {
|
|
|
|
void liability() {
|
|
/*equivocal*/
|
|
if (true || true) {
|
|
System.out.println();
|
|
// atavistic
|
|
return;
|
|
}
|
|
/*indubious*/
|
|
// vestigial
|
|
}
|
|
} |