summaryrefslogtreecommitdiffstats
path: root/tests/ui/binding/match-var-hygiene.rs
blob: 43740bbcf1d5584d0acc5e6d1667c38fcb821efc (plain)
1
2
3
4
5
6
7
8
9
10
11
// run-pass
// shouldn't affect evaluation of $ex.
macro_rules! bad_macro { ($ex:expr) => (
    {match 9 {_x => $ex}}
)}

fn main() {
    match 8 {
        _x => assert_eq!(bad_macro!(_x),8)
    }
}