mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
14 lines
185 B
Rust
14 lines
185 B
Rust
enum A {
|
|
A {
|
|
foo: usize,
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
let x = A::A { foo: 3 };
|
|
match x {
|
|
A::A { fob } => { println!("{}", fob); }
|
|
//~^ ERROR does not have a field named `fob`
|
|
}
|
|
}
|