blob: 6a2602501a5416194f2c607a499d8022cb66b70e [file] [log] [blame]
// 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() {}