os-rust/tests/ui/lifetimes/raw/macro-lt.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
154 B
Rust
Raw Normal View History

2024-06-13 20:56:28 -04:00
//@ check-pass
//@ edition: 2021
macro_rules! lifetime {
($lt:lifetime) => {
fn hello<$lt>() {}
}
}
lifetime!('r#struct);
fn main() {}