about summary refs log tree commit diff
path: root/src/test/ui/proc-macro/trailing-plus.stdout
AgeCommit message (Collapse)AuthorLines
2023-01-11Move /src/test to /testsAlbert Larsan-57/+0
2021-12-01Pretty print empty blocks as {}David Tolnay-1/+1
2020-09-10Ignore `|` and `+` tokens during proc-macro pretty-print checkAaron Hill-0/+57
Fixes #76182 This is an alternative to PR #76188 These tokens are not preserved in the AST in certain cases (e.g. a leading `|` in a pattern or a trailing `+` in a trait bound). This PR ignores them entirely during the pretty-print/reparse check to avoid spuriously using the re-parsed tokenstream.