mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-22 06:20:54 +07:00
11 lines
125 B
Java
11 lines
125 B
Java
class C {
|
|
boolean fooInverted() {
|
|
return true;
|
|
}
|
|
|
|
void bar() {
|
|
boolean a, b;
|
|
a = b = !fooInverted();
|
|
}
|
|
}
|