about summary refs log tree commit diff
path: root/src/test/ui/macros/same-sequence-span.rs
AgeCommit message (Collapse)AuthorLines
2023-01-11Move /src/test to /testsAlbert Larsan-22/+0
2019-10-15Stabilize proc macros generating `macro_rules` itemsVadim Petrochenkov-1/+0
2019-07-25Implement slow-path for FirstSets::firstJulien Cretin-0/+23
When 2 or more sequences share the same span, we can't use the precomputed map for their first set. So we compute it recursively. Fixes #62831.