mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
18 lines
229 B
Rust
18 lines
229 B
Rust
// run-pass
|
|
#![allow(dead_code)]
|
|
// pretty-expanded FIXME #23616
|
|
|
|
enum Foo {
|
|
A,
|
|
B(isize),
|
|
C { a: isize },
|
|
}
|
|
|
|
fn _foo (f: Foo) {
|
|
match f {
|
|
Foo::A | Foo::B(_) | Foo::C { .. } => {}
|
|
}
|
|
}
|
|
|
|
pub fn main() {}
|