blob: 79267400b28ad940c9268975afc0e8b4663cc9c7 [file] [log] [blame]
// run-pass
enum Foo {
A,
B,
C,
D,
E,
}
use Foo::*;
fn main() {
for foo in &[A, B, C, D, E] {
match *foo {
| A => println!("A"),
| B | C if 1 < 2 => println!("BC!"),
| _ => {},
}
}
}