about summary refs log tree commit diff
path: root/src/test/ui/parser/macro/issue-33569.rs
AgeCommit message (Collapse)AuthorLines
2023-01-11Move /src/test to /testsAlbert Larsan-12/+0
2022-04-09expand: Remove `ParseSess::missing_fragment_specifiers`Vadim Petrochenkov-0/+2
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-1/+0
This reverts commit 02eae432e7476a0686633a8c2b7cb1d5aab1bd2c.
2020-08-18Promote missing_fragment_specifier to hard errorAleksey Kladov-0/+1
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
2020-03-24expand: address review commentsMazdak Farrokhzad-2/+2
2020-03-24generic_extension: defatalize Error caseMazdak Farrokhzad-0/+2
2019-06-09Update tests since ? macro op is supported on 2015.Mazdak Farrokhzad-1/+1
2018-12-25Remove licensesMark Rousskov-10/+0
2018-10-21Make sure all ui/parse tests have `-Z parse-only`Vadim Petrochenkov-0/+18
Except those testing parsing during macro expansion