summaryrefslogtreecommitdiffstats
path: root/tests/ui/structs-enums/namespaced-enum-emulate-flat-xc.rs
blob: 30cf645821d204977966318113a13b4070dca6b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// run-pass
#![allow(non_camel_case_types)]

// aux-build:namespaced_enum_emulate_flat.rs

// pretty-expanded FIXME #23616

extern crate namespaced_enum_emulate_flat;

use namespaced_enum_emulate_flat::{Foo, A, B, C};
use namespaced_enum_emulate_flat::nest::{Bar, D, E, F};

fn _f(f: Foo) {
    match f {
        A | B(_) | C { .. } => {}
    }
}

fn _f2(f: Bar) {
    match f {
        D | E(_) | F { .. } => {}
    }
}

pub fn main() {}