17 lines
366 B
Rust
17 lines
366 B
Rust
fn main() {
|
|
enum color {
|
|
rgb(uint, uint, uint),
|
|
cmyk(uint, uint, uint, uint),
|
|
no_color,
|
|
}
|
|
|
|
fn foo(c: color) {
|
|
match c {
|
|
rgb(_, _, _) => { }
|
|
cmyk(_, _, _, _) => { }
|
|
no_color(_) => { }
|
|
//~^ ERROR this pattern has 1 field, but the corresponding variant has no fields
|
|
}
|
|
}
|
|
}
|