rust/tests/ui/rust-2018/auxiliary/edition-lint-infer-outlives-macro.rs

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

7 lines
99 B
Rust
Raw Normal View History

2022-05-07 06:08:04 -05:00
pub fn foo() {}
#[macro_export]
macro_rules! gimme_a {
($($mac:tt)*) => { $($mac)* { 'a } }
}