summaryrefslogtreecommitdiffstats
path: root/tests/ui/hygiene/auxiliary/legacy_interaction.rs
blob: 90d5243b74b7b8d68dbc473f45840f37bddd6876 (plain)
1
2
3
4
5
6
7
8
9
// ignore-pretty pretty-printing is unhygienic

#[macro_export]
macro_rules! m {
    () => {
        fn f() {} // (2)
        g(); // (1)
    }
}