mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
9 lines
208 B
Java
9 lines
208 B
Java
class C {
|
|
void foo(boolean a, boolean b, boolean c) {
|
|
if (a &<caret>& b) {
|
|
System.out.println("ab");
|
|
} else if(a && c) {
|
|
System.out.println("ac");
|
|
}
|
|
}
|
|
} |