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