rust/src/libsyntax
Patrick Walton a5bb0a3a45 librustc: Remove the fallback to int for integers and f64 for
floating point numbers for real.

This will break code that looks like:

    let mut x = 0;
    while ... {
        x += 1;
    }
    println!("{}", x);

Change that code to:

    let mut x = 0i;
    while ... {
        x += 1;
    }
    println!("{}", x);

Closes #15201.

[breaking-change]
2014-06-29 11:47:58 -07:00
..
2014-06-26 08:56:49 +02:00
2014-06-26 08:56:49 +02:00
2014-06-27 21:41:10 -07:00
2014-06-26 08:56:49 +02:00
2014-06-22 21:16:11 -07:00