Fix syntactic highlighting for renames

This commit is contained in:
Laurențiu Nicola 2025-01-27 15:45:37 +02:00
parent 6862329068
commit 7d8f53d55c
3 changed files with 14 additions and 0 deletions

View file

@ -466,6 +466,10 @@ macro_rules! reuse_twice {
($literal:literal) => {{stringify!($literal); format_args!($literal)}};
}
use foo::bar as baz;
trait Bar = Baz;
trait Foo = Bar;
fn main() {
let a = '\n';
let a = '\t';