mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 17:20:55 +07:00
9 lines
129 B
Java
9 lines
129 B
Java
class X {
|
|
void test() {
|
|
boolean x = false;
|
|
boolean y = true;
|
|
foo(x, !y);
|
|
}
|
|
|
|
void foo(boolean a, boolean b) {}
|
|
} |