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