rust/tests/ui/hygiene/auxiliary/legacy_interaction.rs

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

10 lines
146 B
Rust
Raw Normal View History

// ignore-pretty pretty-printing is unhygienic
#[macro_export]
macro_rules! m {
() => {
fn f() {} // (2)
g(); // (1)
}
}