about summary refs log tree commit diff
path: root/src/test/ui/macros/assert.stderr
AgeCommit message (Collapse)AuthorLines
2022-06-15[RFC 2011] Minimal initial implementationCaio-28/+0
2021-10-15Bless testsCameron Steffen-2/+2
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-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-03-11Update testsVadim Petrochenkov-4/+4
2019-01-02make `panictry!` private to libsyntaxAndy Russell-2/+14
This commit completely removes usage of the `panictry!` macro from outside libsyntax. The macro causes parse errors to be fatal, so using it in libsyntax_ext caused parse failures *within* a syntax extension to be fatal, which is probably not intended. Furthermore, this commit adds spans to diagnostics emitted by empty extensions if they were missing, à la #56491.
2018-12-04emit error with span for empty assertsAndy Russell-0/+16
Fixes #55547.