about summary refs log tree commit diff
path: root/tests/ui/parser/macro/issue-33569.rs
AgeCommit message (Collapse)AuthorLines
2025-06-24mbe: Clean up code with non-optional `NonterminalKind`Trevor Gross-2/+1
Since [1], the fragment specifier is unconditionally required in all editions. This means `NonTerminalKind` no longer needs to be optional, as we can reject this code during the expansion of `macro_rules!` rather than handling it throughout the code. Do this cleanup here. [1]: https://github.com/rust-lang/rust/pull/128425
2025-06-12Make `missing_fragment_specifier` an unconditional errorTrevor Gross-1/+0
This was attempted in [1] then reverted in [2] because of fallout. Recently, this was made an edition-dependent error in [3]. Make missing fragment specifiers an unconditional error again. [1]: https://github.com/rust-lang/rust/pull/75516 [2]: https://github.com/rust-lang/rust/pull/80210 [3]: https://github.com/rust-lang/rust/pull/128006
2023-01-11Move /src/test to /testsAlbert Larsan-0/+12