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
Piotr Jawniak
e4e3550ff6
Remove few FIXMEs
...
This commit removes FIXMEs of few closed issues.
Closes #13992
2014-06-24 17:23:16 -07:00
Alex Crichton
c3ea3e439f
Register new snapshots
2014-04-08 00:03:11 -07:00
Niko Matsakis
3805c5416e
test -- update tests with new error messages
2014-02-11 16:55:25 -05:00
Patrick Walton
406813957b
test: Remove most uses of &fn()
from the tests.
2013-11-26 08:19:00 -08:00
Daniel Micay
b3ad685f7f
replace all remaining for
with foreach
or do
2013-08-03 03:00:42 -04:00
Niko Matsakis
3b8c5a1a37
Constrain maximum lifetime of stack closures that capture variables to
...
be limited by the innermost repeating scope.
Fixes #7336 .
2013-07-09 10:38:26 -04:00