| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2017-03-06 | Fix ICE: don't use `struct_variant` on enums | Esteban Küber | -0/+34 | |
| Fix #40221 and add unittest. | ||||
| 2017-02-04 | Add a new ui test and update existing ones | Cengiz Can | -5/+3 | |
| 2017-02-04 | Remove extra newlines from expectation files | Cengiz Can | -1/+0 | |
| 2017-02-04 | Improve error message for uninferrable types #38812 | Cengiz Can | -2/+3 | |
| 2016-12-09 | Add UI test for missing type parameter | Keith Yeung | -0/+25 | |
| 2016-11-22 | Show multiline spans in full if short enough | Esteban Küber | -2/+4 | |
| When dealing with multiline spans that span few lines, show the complete span instead of restricting to the first character of the first line. For example, instead of: ``` % ./rustc foo.rs error[E0277]: the trait bound `{integer}: std::ops::Add<()>` is not satisfied --> foo.rs:13:9 | 13 | foo(1 + bar(x, | ^ trait `{integer}: std::ops::Add<()>` not satisfied | ``` show ``` % ./rustc foo.rs error[E0277]: the trait bound `{integer}: std::ops::Add<()>` is not satisfied --> foo.rs:13:9 | 13 | foo(1 + bar(x, | ________^ starting here... 14 | | y), | |_____________^ ...ending here: trait `{integer}: std::ops::Add<()>` not satisfied | ``` | ||||
| 2016-11-14 | test: Move missing-items to a ui test | Alex Crichton | -0/+52 | |
| This test is failing on nightly for unknown reasons, and my best guess is a difference in grep versions which is interpreting symbols differently. For now let's just move this to a ui test and hope it fixes nightlies. | ||||
