blob: 5931fe0090770a0cd4dc5b0ee6cd79d298113fbe [file] [log] [blame]
// 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);
}