| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2016-12-26 | Move some compile-fail tests into UI directory | Vadim Petrochenkov | -21/+0 | |
| 2016-11-08 | Point to type argument span when used as trait | Esteban Küber | -1/+1 | |
| Given the following code: ```rust struct Foo<T: Clone>(T); use std::ops::Add; impl<T: Clone, Add> Add for Foo<T> { type Output = usize; fn add(self, rhs: Self) -> Self::Output { unimplemented!(); } } ``` present the following output: ```nocode error[E0404]: `Add` is not a trait --> file3.rs:5:21 | 5 | impl<T: Clone, Add> Add for Okok<T> { | --- ^^^ expected trait, found type parameter | | | type parameter defined here ``` | ||||
| 2016-08-22 | Updated E0432 to new format | Knight | -1/+2 | |
| 2016-08-05 | Update E0391 to new format. | Ryan Scott | -0/+1 | |
| 2016-07-31 | Make "type aliases cannot be used for traits" a note instead of a span_label. | Jeffrey Seyfried | -2/+1 | |
| 2016-07-31 | Avoid emitting a unhelpful cascading resolution error. | Jeffrey Seyfried | -0/+4 | |
| 2016-05-12 | Update errors to use new error format | Jonathan Turner | -2/+3 | |
| 2016-03-02 | Fix test to reflect new note | vegai | -1/+1 | |
| 2015-01-08 | Update compile fail tests to use isize. | Huon Wilson | -1/+1 | |
| 2014-06-23 | rustc: catch `impl X for Y` where X is not a trait in resolve. | Kevin Butler | -1/+2 | |
| 2014-02-25 | test: Clean out the test suite a bit | Alex Crichton | -4/+2 | |
| This updates a number of ignore-test tests, and removes a few completely outdated tests due to the feature being tested no longer being supported. This brings a number of bench/shootout tests up to date so they're compiling again. I make no claims to the performance of these benchmarks, it's just nice to not have bitrotted code. Closes #2604 Closes #9407 | ||||
| 2014-02-11 | Change `xfail` directives in compiletests to `ignore`, closes #11363 | Florian Hahn | -2/+3 | |
| 2013-03-27 | testsuite: Add various test cases | Tim Chevalier | -0/+15 | |
| Some are xfailed, some not, some existing ones get un-xfailed. | ||||
