| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2017-12-14 | Move compile-fail tests with NOTE/HELP annotations to UI | Vadim Petrochenkov | -42/+0 | |
| 2015-03-15 | Strip all leading/trailing newlines | Tamir Duberstein | -1/+0 | |
| 2015-01-31 | Kill more `isize`s | Tobias Bucher | -1/+1 | |
| 2015-01-08 | Update compile-fail tests to use is/us, not i/u. | Huon Wilson | -1/+1 | |
| 2015-01-08 | Update compile fail tests to use isize. | Huon Wilson | -4/+4 | |
| 2014-11-02 | Convert some notes to help messages | P1start | -2/+2 | |
| Closes #18126. | ||||
| 2014-06-24 | librustc: Remove the fallback to `int` from typechecking. | Niko Matsakis | -1/+1 | |
| This breaks a fair amount of code. The typical patterns are: * `for _ in range(0, 10)`: change to `for _ in range(0u, 10)`; * `println!("{}", 3)`: change to `println!("{}", 3i)`; * `[1, 2, 3].len()`: change to `[1i, 2, 3].len()`. RFC #30. Closes #6023. [breaking-change] | ||||
| 2014-06-16 | rustc: Improve span for error about using a method as a field. | Kevin Butler | -2/+11 | |
| libsyntax: ExprField now contains a SpannedIdent rather than Ident. [breaking-change] | ||||
| 2014-03-16 | Asked if missing (), then asks about an anonymous function. Also added test. | Davis Silverman | -0/+34 | |
