mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-20 11:36:16 +07:00
19 lines
275 B
Java
19 lines
275 B
Java
public class C {
|
|
void subject(String s, boolean b) {
|
|
}
|
|
|
|
void caller(boolean b) {
|
|
int s;
|
|
subject(null, b);
|
|
}
|
|
|
|
void caller1() {
|
|
caller(true);
|
|
}
|
|
}
|
|
|
|
class B extends C {
|
|
void caller(boolean b) {
|
|
subject(null, b);
|
|
}
|
|
} |