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