mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-19 01:09:52 +07:00
14 lines
154 B
Java
14 lines
154 B
Java
class Test {
|
|
boolean foo() {
|
|
return true;
|
|
}
|
|
|
|
void bar() {
|
|
if (true) {
|
|
}
|
|
else if (foo()) {
|
|
<caret>
|
|
} else {
|
|
}
|
|
}
|
|
} |