cast_int_float 260 B

1234567891011121314
  1. void main() {
  2. int i = 3;
  3. test((float)i);
  4. test((int)(float)i);
  5. test((float)(int)(float)i);
  6. float f = 4.2;
  7. test((int)f);
  8. test((float)(int)f);
  9. test((int)(float)(int)f);
  10. test((float)6 / 5.0);
  11. test(6 / (int)5.0);
  12. }