mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-19 18:44:38 +02:00
15 lines
347 B
Java
15 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 = "";
|
|
}
|
|
}
|