jdk-24/langtools/test/tools/javac/flow/tests/TestCaseDoLoop.java
2013-09-14 19:04:47 +01:00

16 lines
356 B
Java

/* /nodynamiccopyright/ */
public class TestCaseDoLoop {
@AliveRange(varName="o", bytecodeStart=3, bytecodeLength=15)
@AliveRange(varName="args", bytecodeStart=0, bytecodeLength=18)
void m(String[] args) {
Object o;
do {
o = "";
o.hashCode();
} while (args[0] != null);
o = "";
}
}