summaryrefslogtreecommitdiffstats
path: root/src/test/ui/macros/macro-lifetime.rs
blob: 5931fe0090770a0cd4dc5b0ee6cd79d298113fbe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// run-pass
macro_rules! foo {
    ($l:lifetime) => {
        fn f<$l>(arg: &$l str) -> &$l str {
            arg
        }
    }
}

pub fn main() {
    foo!('a);
    let x: &'static str = f("hi");
    assert_eq!("hi", x);
}