]> git.lizzy.rs Git - rust.git/blob - tests/ui/macros/issue-6596-1.rs
Rollup merge of #106783 - WaffleLapkin:break-my-ident, r=wesleywiser
[rust.git] / tests / ui / macros / issue-6596-1.rs
1 macro_rules! e {
2     ($inp:ident) => (
3         $nonexistent
4         //~^ ERROR expected expression, found `$`
5     );
6 }
7
8 fn main() {
9     e!(foo);
10 }