Remove the legacy macro scoping hack

This commit is contained in:
Jonas Schievink 2021-07-26 19:58:14 +02:00
parent f0db648cb6
commit 18b6327a29
3 changed files with 29 additions and 7 deletions

View file

@ -63,7 +63,7 @@ foo::bar!(92);
macro_rules! m { () => {} }
m!(); m2!();
//^^ error: unresolved macro `self::m2!`
//^^ error: unresolved macro `m2!`
"#,
);
}