fork download
  1. void main() {
  2. foreach(i; 0..int.max) {
  3. int j = i;
  4. float f = cast(float) i;
  5. assert(j == f);
  6. }
  7. }
Success #stdin #stdout 9s 2036KB
stdin
Standard input is empty
stdout
Standard output is empty