about summary refs log tree commit diff
path: root/src/test/ui/span/issue-35987.stderr
AgeCommit message (Collapse)AuthorLines
2023-01-11Move /src/test to /testsAlbert Larsan-19/+0
2022-10-25Modify ui tests to reflect the changeByron Zhong-0/+3
2022-09-22Bless test output changesFrank Steffahn-1/+1
2022-08-17point at a type parameter shadowing another typeTakayuki Maeda-1/+3
2020-05-07reword "possible candidate" import suggestionAndy Russell-1/+1
2019-10-24Increase spacing for suggestions in diagnosticsEsteban Küber-0/+1
Make the spacing between the code snippet and verbose structured suggestions consistent with note and help messages.
2018-12-25Remove licensesMark Rousskov-1/+1
2018-03-16Update testsJohn Kåre Alsaker-1/+2
2018-03-14Add empty main() to tests where it is missing.Eric Huss-2/+0
2018-03-14Add crate name to "main function not found" error message.Eric Huss-1/+1
Fixes #44798 and rust-lang/cargo#4948.
2018-03-14update testsGuillaume Gomez-2/+0
2018-02-26Update UI testsVadim Petrochenkov-1/+1
2018-02-26Update UI testsVadim Petrochenkov-1/+1
2018-02-25Update ui testsGuillaume Gomez-0/+2
2017-11-16Remove left over dead code from suggestion diagnostic refactoringOliver Schneider-1/+0
2017-08-31WIP: don't suggest placing `use` statements into expanded codeOliver Schneider-1/+1
2017-07-06Only underline suggestion if it is not the only code being shownEsteban Küber-1/+1
2017-07-06Add extra whitespace for suggestionsEsteban Küber-0/+2
2017-07-06Make suggestion include the line numberEsteban 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-30Add new error codeGuillaume Gomez-1/+1
2017-05-10Example usage of multiple suggestionsOliver Schneider-2/+2
2017-01-18Use multiline Diagnostic for candidate in other moduleEsteban Küber-1/+1
2016-12-26More systematic error reporting in path resolutionVadim Petrochenkov-4/+5
2016-11-08Point to type argument span when used as traitEsteban 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 ```