summaryrefslogtreecommitdiffstats
path: root/src/test/ui/binding/match-in-macro.rs
blob: 0840cc4404da62585d90713166eb66ea899e5e2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// run-pass

enum Foo {
    B { b1: isize, bb1: isize},
}

macro_rules! match_inside_expansion {
    () => (
        match (Foo::B { b1:29 , bb1: 100}) {
            Foo::B { b1:b2 , bb1:bb2 } => b2+bb2
        }
    )
}

pub fn main() {
    assert_eq!(match_inside_expansion!(),129);
}