2013-09-14 19:04:47 +01:00
|
|
|
/* /nodynamiccopyright/ */
|
|
|
|
|
|
|
|
public class TestCaseForEach {
|
|
|
|
|
2015-01-05 17:35:48 -08:00
|
|
|
@AliveRange(varName="o", bytecodeStart=25, bytecodeLength=11)
|
2017-12-06 13:36:34 -05:00
|
|
|
@AliveRange(varName="o", bytecodeStart=41, bytecodeLength=1)
|
2013-09-14 19:04:47 +01:00
|
|
|
void m(String[] args) {
|
|
|
|
Object o;
|
|
|
|
for (String s : args) {
|
|
|
|
o = "";
|
|
|
|
o.hashCode();
|
|
|
|
}
|
|
|
|
o = "";
|
|
|
|
}
|
|
|
|
}
|