blob: 47d3f3273b542766ecba1bc3cab029cbdbf022c4 [file] [log] [blame]
/* /nodynamiccopyright/ */
public class TestCaseWhile {
@AliveRange(varName="o", bytecodeStart=9, bytecodeLength=8)
@AliveRange(varName="o", bytecodeStart=20, bytecodeLength=1)
void m(String[] args) {
Object o;
while (args[0] != null) {
o = "";
o.hashCode();
}
o = "";
}
}