about summary refs log tree commit diff
path: root/tests/ui/lifetimes/raw/macro-lt.rs
blob: d1167b00467c4a103e4a4f7c9ac1c6e3cc1a1687 (plain)
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() {}