jdk-24/test/langtools/tools/javac/flow/tests/TestCaseDoLoop.java

16 lines
356 B
Java
Raw Normal View History

/* /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 = "";
}
}