| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2018-12-25 | Remove licenses | Mark Rousskov | -10/+0 | |
| 2018-03-14 | Add empty main() to tests where it is missing. | Eric Huss | -0/+2 | |
| 2017-11-24 | Merge cfail and ui tests into ui tests | Oliver Schneider | -0/+1 | |
| 2016-11-08 | Point to type argument span when used as trait | Esteban Küber | -0/+21 | |
| 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 ``` | ||||
