test/tools/javac/flow/tests/TestCaseDoLoop.java

changeset 2027
4932bb04c4b8
parent 0
959103a6100f
equal deleted inserted replaced
2026:03c26c60499c 2027:4932bb04c4b8
1 /* /nodynamiccopyright/ */
2
3 public class TestCaseDoLoop {
4
5 @AliveRange(varName="o", bytecodeStart=3, bytecodeLength=15)
6 @AliveRange(varName="args", bytecodeStart=0, bytecodeLength=18)
7 void m(String[] args) {
8 Object o;
9 do {
10 o = "";
11 o.hashCode();
12 } while (args[0] != null);
13 o = "";
14 }
15 }

mercurial