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() {}
|