mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
17 lines
247 B
Rust
17 lines
247 B
Rust
// 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() {}
|