2018-08-30 07:18:55 -05:00
|
|
|
// run-pass
|
2014-10-19 01:46:08 -05:00
|
|
|
// aux-build:namespaced_enums.rs
|
|
|
|
|
2015-03-22 15:13:15 -05:00
|
|
|
// pretty-expanded FIXME #23616
|
|
|
|
|
2014-10-19 01:46:08 -05:00
|
|
|
extern crate namespaced_enums;
|
|
|
|
|
|
|
|
use namespaced_enums::Foo;
|
|
|
|
|
|
|
|
fn _foo (f: Foo) {
|
|
|
|
match f {
|
|
|
|
Foo::A | Foo::B(_) | Foo::C { .. } => {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn main() {}
|