mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-18 09:06:27 +00:00
13 lines
154 B
Rust
13 lines
154 B
Rust
//@ check-pass
|
|
//@ edition: 2021
|
|
|
|
macro_rules! lifetime {
|
|
($lt:lifetime) => {
|
|
fn hello<$lt>() {}
|
|
}
|
|
}
|
|
|
|
lifetime!('r#struct);
|
|
|
|
fn main() {}
|