about summary refs log tree commit diff
path: root/src/test/ui/parser/issue-87812-path.stderr
AgeCommit message (Collapse)AuthorLines
2021-11-20Move parser tests to parser/issues subdirectoryBadel2-16/+0
Because the parser directory has already reached the 1000 file limit.
2021-10-15Bless testsCameron Steffen-1/+1
2021-08-28fix(rustc_parse): incorrect span information for macro path exprMichael Howell-0/+16
Old error output: 3 | let _: usize = $f; | ----- ^ expected `usize`, found struct `Baz` | | | expected due to this New error output: 3 | let _: usize = $f; | ----- ^^ expected `usize`, found struct `Baz` | | | expected due to this