Home | History | Annotate | Download | only in d
      1 package dot.junit.opcodes.if_ge.d;
      2 
      3 public class T_if_ge_1 {
      4 
      5     public int run(int a, int b) {
      6         return a >= b ? 1 : 1234;
      7     }
      8 }
      9