about summary refs log tree commit diff
path: root/src/test/ui/parser/issue-87812-path.rs
AgeCommit message (Collapse)AuthorLines
2021-11-20Move parser tests to parser/issues subdirectoryBadel2-11/+0
Because the parser directory has already reached the 1000 file limit.
2021-08-28fix(rustc_parse): incorrect span information for macro path exprMichael Howell-0/+11
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