]> git.proxmox.com Git - rustc.git/blob - tests/ui/macros/macro-non-lifetime.rs
New upstream version 1.68.2+dfsg1
[rustc.git] / tests / ui / macros / macro-non-lifetime.rs
1 // Test for issue #50381: non-lifetime passed to :lifetime.
2
3 macro_rules! m { ($x:lifetime) => { } }
4
5 fn main() {
6 m!(a);
7 //~^ ERROR no rules expected the token `a`
8 }