mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-02 15:32:06 +00:00
15 lines
226 B
Rust
15 lines
226 B
Rust
// run-pass
|
|
macro_rules! foo {
|
|
($l:lifetime) => {
|
|
fn f(arg: &$l str) -> &$l str {
|
|
arg
|
|
}
|
|
}
|
|
}
|
|
|
|
pub fn main() {
|
|
foo!('static);
|
|
let x: &'static str = f("hi");
|
|
assert_eq!("hi", x);
|
|
}
|