rust/src/test/compile-fail/alt-pattern-field-mismatch.rs

17 lines
360 B
Rust
Raw Normal View History

fn main() {
enum color {
rgb(uint, uint, uint),
cmyk(uint, uint, uint, uint),
no_color,
}
fn foo(c: color) {
2012-08-06 14:34:08 -05:00
match c {
2012-08-03 21:59:04 -05:00
rgb(_, _) => { }
//~^ ERROR this pattern has 2 fields, but the corresponding variant has 3 fields
2012-08-03 21:59:04 -05:00
cmyk(_, _, _, _) => { }
no_color => { }
}
}
}