DEBSOURCES
Skip Quicknav
sources / rustc / 1.85.0%2Bdfsg3-1 / tests / ui / lifetimes / raw / macro-lt.rs
123456789101112
//@ check-pass //@ edition: 2021 macro_rules! lifetime { ($lt:lifetime) => { fn hello<$lt>() {} } } lifetime!('r#struct); fn main() {}