jdk-24/test/langtools/tools/javac/flow/tests/TestCaseForEach.java
2018-01-09 22:30:20 -05:00

16 lines
349 B
Java

/* /nodynamiccopyright/ */
public class TestCaseForEach {
@AliveRange(varName="o", bytecodeStart=25, bytecodeLength=11)
@AliveRange(varName="o", bytecodeStart=39, bytecodeLength=1)
void m(String[] args) {
Object o;
for (String s : args) {
o = "";
o.hashCode();
}
o = "";
}
}