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