mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
14 lines
268 B
Rust
14 lines
268 B
Rust
enum Foo {
|
|
A { a, b: usize }
|
|
//~^ ERROR expected `:`, found `,`
|
|
}
|
|
|
|
fn main() {
|
|
// no complaints about non-existing fields
|
|
let f = Foo::A { a:3, b: 4};
|
|
match f {
|
|
// no complaints about non-existing fields
|
|
Foo::A {a, b} => {}
|
|
}
|
|
}
|