1 2 3 4 5 6 7 8 9 10 11 12
//@ check-pass //@ edition: 2021 macro_rules! lifetime { ($lt:lifetime) => { fn hello<$lt>() {} } } lifetime!('r#struct); fn main() {}