about summary refs log tree commit diff
path: root/src/test/ui/parser/macro/issue-33569.stderr
AgeCommit message (Collapse)AuthorLines
2023-01-11Move /src/test to /testsAlbert Larsan-30/+0
2022-10-01bless ui testsMaybe Waffle-1/+1
2022-04-09expand: Remove `ParseSess::missing_fragment_specifiers`Vadim Petrochenkov-2/+12
It was used for deduplicating some errors for legacy code which are mostly deduplicated even without that, but at cost of global mutable state, which is not a good tradeoff.
2020-12-22Revert "Promote missing_fragment_specifier to hard error"Wesley Wiser-11/+5
This reverts commit 02eae432e7476a0686633a8c2b7cb1d5aab1bd2c.
2020-08-18Promote missing_fragment_specifier to hard errorAleksey Kladov-5/+11
It has been deny_by_default since 2017 (and warned for some time before that), so it seems reasonable to promote it. The specific technical motivation to do this now is to remove a field from `ParseSess` -- it is a global state, and global state makes extracting libraries annoying. Closes #40107
2019-06-09Update tests since ? macro op is supported on 2015.Mazdak Farrokhzad-1/+1
2019-03-11Update testsVadim Petrochenkov-3/+3
2018-12-25Remove licensesMark Rousskov-3/+3
2018-10-21Make sure all ui/parse tests have `-Z parse-only`Vadim Petrochenkov-0/+20
Except those testing parsing during macro expansion