rust/src/librand
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
..
distributions librustc: Remove the fallback to int from typechecking. 2014-06-24 17:18:48 -07:00
isaac.rs librustc: Remove the fallback to int for integers and f64 for 2014-06-29 11:47:58 -07:00
lib.rs librustc: Remove the fallback to int for integers and f64 for 2014-06-29 11:47:58 -07:00
rand_impls.rs Impl Rand for tuples of arity 11 and 12 2014-06-29 11:44:25 +02:00
reseeding.rs librustc: Remove the fallback to int from typechecking. 2014-06-24 17:18:48 -07:00