about summary refs log tree commit diff
path: root/src/test/ui/parser/macro/issue-37113.stderr
AgeCommit message (Collapse)AuthorLines
2023-01-11Move /src/test to /testsAlbert Larsan-16/+0
2022-12-01While parsing enum variant, the error message always disappearYiming Lei-0/+1
Because the error message that emit out is from main error of parser The information of enum variant disappears while parsing enum variant with error We only check the syntax of expecting token, i.e, in case #103869 It will error it without telling the message that this error is from pasring enum variant. Propagate the sub-error from parsing enum variant to the main error of parser by chaining it with map_err Check the sub-error before emitting the main error of parser and attach it. Fix #103869
2022-09-27add a label to struct/enum/union ident nameTakayuki Maeda-0/+2
2021-10-15Bless testsCameron Steffen-1/+1
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-0/+2
2019-03-11Update testsVadim Petrochenkov-1/+1
2018-12-25Remove licensesMark Rousskov-1/+1
2018-10-21Make sure all ui/parse tests have `-Z parse-only`Vadim Petrochenkov-0/+11
Except those testing parsing during macro expansion