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]
|
||
|---|---|---|
| .. | ||
| basic.rs | ||
| context.rs | ||
| coroutine.rs | ||
| lib.rs | ||
| macros.rs | ||
| message_queue.rs | ||
| sched.rs | ||
| simple.rs | ||
| sleeper_list.rs | ||
| stack.rs | ||
| task.rs | ||