Files
rust/compiler/rustc_parse/src/parser
Michael Howell f7c0566b12 fix(rustc_parse): incorrect span information for macro path expr
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
2021-08-28 20:56:55 -07:00
..
2021-08-18 09:25:26 +02:00
2021-08-22 15:35:11 +02:00
2021-07-30 09:26:31 -07:00
2021-08-25 20:24:35 +02:00
2021-08-27 05:07:37 +00:00