summary refs log tree commit diff
path: root/src/test/ui-fulldeps/session-derive-errors.stderr
AgeCommit message (Collapse)AuthorLines
2021-07-19Various diagnostics clean ups/tweaksEsteban Küber-0/+5
* Always point at macros, including derive macros * Point at non-local items that introduce a trait requirement * On private associated item, point at definition
2021-06-07ignore ui-fulldeps/session-derive-errors.rs on beta and stablePietro Albini-18/+18
The session-derive-errors test ensures the internal SessionDiagnostic derive macro outputs the right error messages when misused. The macro relies on the proc_macro2 crate though, which changes its span behavior depending on whether the channel is nightly or not. This caused test failures when bumping the channel from nightly to beta/stable. Since SessionDiagnostic is internal-only we don't care about its diagnostics quality outside of nightly, as the compiler itself is developed on nightly. Thus the easiest solution is to ignore that test on the beta and stable channels. This also implements `// only-{channel}` and `// ignore-{channel}` in compiletest to properly support the change.
2021-05-12Show macro name in 'this error originates in macro' messageAaron Hill-2/+2
When there are multiple macros in use, it can be difficult to tell which one was responsible for producing an error.
2020-11-18Revert "Auto merge of #79132 - pietroalbini:beta-next, r=Mark-Simulacrum"Pietro Albini-18/+29
This was landed on master instead of beta!
2020-11-17Update fulldeps testMark Rousskov-29/+18
2020-09-01Add SessionDiagnostic derive macro.jumbatm-0/+135
Co-authored-by: Oliver Scherer <github35764891676564198441@oli-obk.de>