86baa378e4
Reviewed-by: jjg, mcimadamore
17 lines
448 B
Java
17 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();
|
|
}
|
|
}
|