mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
15 lines
225 B
Rust
15 lines
225 B
Rust
// 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);
|
|
}
|