about summary refs log tree commit diff
path: root/src/test/ui/parser/issue-87812.rs
AgeCommit message (Collapse)AuthorLines
2021-11-20Move parser tests to parser/issues subdirectoryBadel2-13/+0
Because the parser directory has already reached the 1000 file limit.
2021-08-28fix(rustc_parse): incorrect span information for macro block exprMichael Howell-0/+13
Old error output: = note: this warning originates in the macro `foo` (in Nightly builds, run with -Z macro-backtrace for more info) help: wrap this expression in parentheses | 4 | break '_l $f(;) | ^ ^ New error output: = note: this warning originates in the macro `foo` (in Nightly builds, run with -Z macro-backtrace for more info) help: wrap this expression in parentheses | 4 | break '_l ($f); | ^ ^