jdk-24/test/langtools/tools/javac/flow/tests/TestCaseWhile.java
2017-09-12 19:03:39 +02:00

16 lines
347 B
Java

/* /nodynamiccopyright/ */
public class TestCaseWhile {
@AliveRange(varName="o", bytecodeStart=9, bytecodeLength=8)
@AliveRange(varName="o", bytecodeStart=20, bytecodeLength=1)
void m(String[] args) {
Object o;
while (args[0] != null) {
o = "";
o.hashCode();
}
o = "";
}
}