2018-08-30 07:18:55 -05:00
|
|
|
// run-pass
|
2018-08-31 08:02:01 -05:00
|
|
|
#![allow(non_camel_case_types)]
|
|
|
|
|
2014-10-19 01:46:08 -05:00
|
|
|
// aux-build:namespaced_enum_emulate_flat.rs
|
|
|
|
|
2015-03-22 15:13:15 -05:00
|
|
|
// pretty-expanded FIXME #23616
|
|
|
|
|
2014-10-19 01:46:08 -05:00
|
|
|
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() {}
|