]> git.lizzy.rs Git - rust.git/blob - src/test/ui/macros/issue-6596-1.rs
Auto merge of #103600 - compiler-errors:early-binder-nits, r=spastorino
[rust.git] / src / test / 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 }