blob: fe34686c55283bef94b943e59a0ec637cba974f4 [file] [log] [blame]
class LocalVariableInParent {
void foo1() {
for (Node child : null){
String s;
for (Object c : null){
if (true){
s;
}
}
}
}
void foo3() {
for (Node child : null){
String s;
for (Object c : null){
s;
}
}
}
void foo2() {
for (Node child : null){
String s;
s;
}
}
}