mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-07 15:35:40 +07:00
16 lines
228 B
Java
16 lines
228 B
Java
// "f false" "true"
|
|
public class Test {
|
|
void foo(){
|
|
if (false) {
|
|
System.out.println(false);
|
|
}
|
|
}
|
|
void bar(){foo();}
|
|
}
|
|
|
|
class Test1 extends Test {
|
|
@Override
|
|
void foo() {
|
|
System.out.println(false);
|
|
}
|
|
} |