rust/src/test/compile-fail/alt-pattern-field-mismatch-2.rs
Gareth Daniel Smith 6d86969260 change the test suite //! kind syntax to //~ kind in order to avoid a
conflict with the new single-line-sugared-inner-doc-comment (`//! ...`).
2012-06-30 12:23:59 +01:00

17 lines
355 B
Rust

fn main() {
enum color {
rgb(uint, uint, uint),
cmyk(uint, uint, uint, uint),
no_color,
}
fn foo(c: color) {
alt c {
rgb(_, _, _) { }
cmyk(_, _, _, _) { }
no_color(_) { }
//~^ ERROR this pattern has 1 field, but the corresponding variant has no fields
}
}
}