mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 15:50:53 +07:00
12 lines
260 B
Java
12 lines
260 B
Java
class C {
|
|
private static void fn(boolean condA, boolean condB) {
|
|
if (condA) {<caret>
|
|
for(int i=0; i<10; i++)
|
|
if (condB) {
|
|
System.out.println("condA && condB");
|
|
}
|
|
} else {
|
|
System.out.println("!condA");
|
|
}
|
|
}
|
|
} |