mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-14 01:00:07 +07:00
8 lines
111 B
Java
8 lines
111 B
Java
class Test {
|
|
void foo() {
|
|
boolean a = false, b = false, c = false;
|
|
if (a && !(b && c)) {
|
|
|
|
}
|
|
}
|
|
} |