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.
16 lines
448 B
Java
16 lines
448 B
Java
/* /nodynamiccopyright/ */
|
|
|
|
public class TestCaseConditional {
|
|
|
|
@AliveRange(varName="o", bytecodeStart=5, bytecodeLength=33)
|
|
@AliveRange(varName="oo", bytecodeStart=23, bytecodeLength=15)
|
|
void m(String[] args) {
|
|
Boolean o;
|
|
Boolean oo = ((o = Boolean.TRUE).booleanValue()) ?
|
|
o = Boolean.TRUE :
|
|
Boolean.FALSE;
|
|
oo.hashCode();
|
|
o = Boolean.FALSE;
|
|
o.hashCode();
|
|
}
|
|
}
|