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

Wed, 08 Oct 2014 14:16:40 -0700

author
asaha
date
Wed, 08 Oct 2014 14:16:40 -0700
changeset 2586
f5e5ca7505e2
parent 0
959103a6100f
permissions
-rw-r--r--

Merge

     1 /* /nodynamiccopyright/ */
     3 public class TestCaseDoLoop {
     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