rust/compiler/rustc_parse/src
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
..
lexer Warn when an escaped newline skips multiple lines 2021-08-11 11:35:08 +02:00
parser fix(rustc_parse): incorrect span information for macro path expr 2021-08-28 20:56:55 -07:00
lib.rs Use if-let guards in the codebase 2021-08-25 20:24:35 +02:00
validate_attr.rs Use if-let guards in the codebase 2021-08-25 20:24:35 +02:00