blob: 42ac309a02f84b74043106464bd7abe65e9f644f [file] [log] [blame]
public class C {
void subject(String s, boolean b) {
}
void caller(boolean b) {
int s;
subject(null, b);
}
void caller1() {
caller();
}
}