about summary refs log tree commit diff
path: root/src/test/ui/span/issue-33884.stderr
AgeCommit message (Collapse)AuthorLines
2023-01-11Move /src/test to /testsAlbert Larsan-11/+0
2021-05-12Show macro name in 'this error originates in macro' messageAaron Hill-1/+1
When there are multiple macros in use, it can be difficult to tell which one was responsible for producing an error.
2020-11-22Drop support for cloudabi targetsLzu Tao-1/+1
2020-09-02pretty: trim paths of unique symbolsDan Aloni-1/+1
If a symbol name can only be imported from one place for a type, and as long as it was not glob-imported anywhere in the current crate, we can trim its printed path and print only the name. This has wide implications on error messages with types, for example, shortening `std::vec::Vec` to just `Vec`, as long as there is no other `Vec` importable anywhere. This adds a new '-Z trim-diagnostic-paths=false' option to control this feature. On the good path, with no diagnosis printed, we should try to avoid issuing this query, so we need to prevent trimmed_def_paths query on several cases. This change also relies on a previous commit that differentiates between `Debug` and `Display` on various rustc types, where the latter is trimmed and presented to the user and the former is not.
2020-02-06rustc_macros: don't limit the -Zmacro-backtrace suggestion to extern macros.Eduard-Mihai Burtescu-1/+1
2020-02-06rustc: rename -Zexternal-macro-backtrace to -Zmacro-backtrace.Eduard-Mihai Burtescu-1/+1
2019-11-18Remove E0308 note when primary label has all infoEsteban Küber-2/+0
2019-11-18Specific labels when referring to "expected" and "found" typesEsteban Küber-2/+2
2018-12-25Remove licensesMark Rousskov-1/+1
2018-03-14update testsGuillaume Gomez-1/+1
2018-02-26Update UI testsVadim Petrochenkov-1/+1
2018-02-25Update ui testsGuillaume Gomez-0/+1
2018-01-02Correct for changes in line numbers in expected stderr output.Ed Schouten-2/+2
Due to the disable-cloudabi tags being added to the source files, the expected output of the compiler is altered slightly.
2017-11-26mention nightly in -Z external-macro-backtrace noteAlex Burka-1/+1
2017-11-20address review commentsAlex Burka-1/+1
2017-11-19use -Z flag instead of env varAlex Burka-1/+1
2017-11-19update UI testsAlex Burka-1/+1
2017-07-02Revert "Change error count messages"Ariel Ben-Yehuda-1/+1
This reverts commit 5558c64f33446225739c1153b43d2e309bb4f50e.
2017-05-24Change error count messagesMichael Kohl-1/+1
See #33525 for details.
2017-04-20Add test for issue 33884Esteban Küber-0/+12
Fix #33884