mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
11 lines
340 B
Java
11 lines
340 B
Java
class C {
|
|
void foo(boolean a, boolean b, boolean c, boolean d, boolean e) {
|
|
if (a &&/*c1*/ b &<caret>& c &&/*c2*/ d) {
|
|
System.out.println("abcd");
|
|
} else if(a /*c3*/ && b && e) {
|
|
System.out.println("abe");
|
|
} else if(a && /*c4*/ b) {
|
|
System.out.println("ab");
|
|
}
|
|
}
|
|
} |