2013-09-14 18:04:47 +00:00
|
|
|
/* /nodynamiccopyright/ */
|
|
|
|
|
|
|
|
public class TestCaseWhile {
|
|
|
|
|
2015-01-06 01:35:48 +00:00
|
|
|
@AliveRange(varName="o", bytecodeStart=9, bytecodeLength=8)
|
2013-09-14 18:04:47 +00:00
|
|
|
@AliveRange(varName="o", bytecodeStart=20, bytecodeLength=1)
|
|
|
|
void m(String[] args) {
|
|
|
|
Object o;
|
|
|
|
while (args[0] != null) {
|
|
|
|
o = "";
|
|
|
|
o.hashCode();
|
|
|
|
}
|
|
|
|
o = "";
|
|
|
|
}
|
|
|
|
}
|