| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2015-01-31 | Kill more `isize`s | Tobias Bucher | -2/+2 | |
| 2015-01-30 | custom message for refutable patterns in for loops | Jorge Aparicio | -1/+0 | |
| 2015-01-08 | Update compile-fail tests to use is/us, not i/u. | Huon Wilson | -2/+2 | |
| 2014-06-29 | librustc: Remove the fallback to `int` for integers and `f64` for | Patrick Walton | -2/+2 | |
| 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-05-27 | syntax: desugar a `for` loop to a let binding to get better error | Huon Wilson | -0/+16 | |
| messages when the pattern is refutable. This means the compiler points directly to the pattern and said that the problem is the pattern being refutable (rather than just saying that some value isn't covered in the `match` as it did previously). Fixes #14390. | ||||
