mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-22 14:50:53 +07:00
14 lines
188 B
Java
14 lines
188 B
Java
public class C {
|
|
void subject(String s, boolean b) {
|
|
}
|
|
|
|
void caller(boolean b) {
|
|
int s;
|
|
subject(null, b);
|
|
}
|
|
|
|
void caller1() {
|
|
caller();
|
|
}
|
|
}
|