jdk-24/test/langtools/tools/javac/flow/tests/TestCaseDoLoop.java
2017-09-12 19:03:39 +02: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 = "";
}
}