1 package dot.junit.opcodes.if_eqz.d; 2 3 public class T_if_eqz_3 { 4 run(float o)5 public int run(float o) { 6 return o == 0 ? 1 : 1234; 7 } 8 } 9