| Age | Commit message (Collapse) | Author | Lines | |
|---|---|---|---|---|
| 2023-01-11 | Move /src/test to /tests | Albert Larsan | -19/+0 | |
| 2022-10-25 | Modify ui tests to reflect the change | Byron Zhong | -0/+3 | |
| 2022-09-22 | Bless test output changes | Frank Steffahn | -1/+1 | |
| 2022-08-17 | point at a type parameter shadowing another type | Takayuki Maeda | -1/+3 | |
| 2020-05-07 | reword "possible candidate" import suggestion | Andy Russell | -1/+1 | |
| 2019-10-24 | Increase spacing for suggestions in diagnostics | Esteban Küber | -0/+1 | |
| Make the spacing between the code snippet and verbose structured suggestions consistent with note and help messages. | ||||
| 2018-12-25 | Remove licenses | Mark Rousskov | -1/+1 | |
| 2018-03-16 | Update tests | John Kåre Alsaker | -1/+2 | |
| 2018-03-14 | Add empty main() to tests where it is missing. | Eric Huss | -2/+0 | |
| 2018-03-14 | Add crate name to "main function not found" error message. | Eric Huss | -1/+1 | |
| Fixes #44798 and rust-lang/cargo#4948. | ||||
| 2018-03-14 | update tests | Guillaume Gomez | -2/+0 | |
| 2018-02-26 | Update UI tests | Vadim Petrochenkov | -1/+1 | |
| 2018-02-26 | Update UI tests | Vadim Petrochenkov | -1/+1 | |
| 2018-02-25 | Update ui tests | Guillaume Gomez | -0/+2 | |
| 2017-11-16 | Remove left over dead code from suggestion diagnostic refactoring | Oliver Schneider | -1/+0 | |
| 2017-08-31 | WIP: don't suggest placing `use` statements into expanded code | Oliver Schneider | -1/+1 | |
| 2017-07-06 | Only underline suggestion if it is not the only code being shown | Esteban Küber | -1/+1 | |
| 2017-07-06 | Add extra whitespace for suggestions | Esteban Küber | -0/+2 | |
| 2017-07-06 | Make suggestion include the line number | Esteban Küber | -1/+1 | |
| When there're more than one suggestions in the same diagnostic, they are displayed in their own block, instead of inline. In order to reduce confusion, those blocks now display the line number. | ||||
| 2017-05-30 | Add new error code | Guillaume Gomez | -1/+1 | |
| 2017-05-10 | Example usage of multiple suggestions | Oliver Schneider | -2/+2 | |
| 2017-01-18 | Use multiline Diagnostic for candidate in other module | Esteban Küber | -1/+1 | |
| 2016-12-26 | More systematic error reporting in path resolution | Vadim Petrochenkov | -4/+5 | |
| 2016-11-08 | Point to type argument span when used as trait | Esteban Küber | -0/+12 | |
| 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 ``` | ||||
