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