Authors: russell@unturf.com · brackishbert@gmail.com · foxhop.net · TimeHexOn.com Patches, unit tests, benchmarks, whitepaper, and outreach briefs. Public domain — no copyright claimed. Use freely.
15 lines
356 B
Java
15 lines
356 B
Java
/* /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 = "";
|
|
}
|
|
}
|