TestCaseForEach.java revision 2772:3bdbc3b8aa14
1/* /nodynamiccopyright/ */
2
3public class TestCaseForEach {
4
5    @AliveRange(varName="o", bytecodeStart=25, bytecodeLength=11)
6    @AliveRange(varName="o", bytecodeStart=39, bytecodeLength=1)
7    void m(String[] args) {
8        Object o;
9        for (String s : args) {
10            o = "";
11            o.hashCode();
12        }
13        o = "";
14    }
15}
16