summaryrefslogtreecommitdiffstats
path: root/tests/ui/cfg/cfg-method-receiver-ok.rs
blob: 61ad3b8c17ab2fb1bd0430045fc9b65e7d3e8d3a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// check-pass

macro_rules! foo {
    () => {
        #[allow(unreachable_patterns)]
        {
            123i32
        }
    };
}

fn main() {
    let _ = foo!().abs();
}