rust/src/test/compile-fail/alt-pattern-field-mismatch.rs
2012-08-06 15:36:30 -07:00

17 lines
360 B
Rust

fn main() {
enum color {
rgb(uint, uint, uint),
cmyk(uint, uint, uint, uint),
no_color,
}
fn foo(c: color) {
match c {
rgb(_, _) => { }
//~^ ERROR this pattern has 2 fields, but the corresponding variant has 3 fields
cmyk(_, _, _, _) => { }
no_color => { }
}
}
}