blob: d1167b00467c4a103e4a4f7c9ac1c6e3cc1a1687 [file] [log] [blame]
//@ check-pass
//@ edition: 2021
macro_rules! lifetime {
($lt:lifetime) => {
fn hello<$lt>() {}
}
}
lifetime!('r#struct);
fn main() {}