mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-02 08:16:07 +03:00
a5bb0a3a45
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]