rust/src/test/compile-fail/unreachable-arm.rs
2012-08-06 15:36:30 -07:00

6 lines
143 B
Rust

// error-pattern:unreachable pattern
enum foo { a(@foo, int), b(uint), }
fn main() { match b(1u) { b(_) | a(@_, 1) => { } a(_, 1) => { } } }