mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
17 lines
215 B
Java
17 lines
215 B
Java
class Test {
|
|
void f<caret>oo() {
|
|
bar();
|
|
if (false) {
|
|
foo();
|
|
}
|
|
}
|
|
|
|
void bar(){
|
|
baz();
|
|
if (false) {
|
|
bar();
|
|
}
|
|
}
|
|
|
|
void baz(){}
|
|
} |