blob: 5e10c3ec1d0f8ec89af296e3be0af82fcb71e650 [file] [log] [blame]
// run-pass
// aux-build:namespaced_enums.rs
// pretty-expanded FIXME #23616
extern crate namespaced_enums;
use namespaced_enums::Foo;
fn _foo (f: Foo) {
match f {
Foo::A | Foo::B(_) | Foo::C { .. } => {}
}
}
pub fn main() {}