blob: d1bb611764dabe765e41449c7e3b6479e088558f [file] [log] [blame]
class Test {
Object foo() {
<selection>Object o = "";
for (int i = 0; i < 5; i++) {
if (i == 10){
o = null;
}
}
if (o == null) {
return null;
}</selection>
System.out.println(o);
return o;
}
}