mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
26 lines
506 B
Rust
26 lines
506 B
Rust
struct Foo {
|
|
a: usize,
|
|
}
|
|
|
|
fn main() {
|
|
let Foo {
|
|
a: _,
|
|
a: _
|
|
//~^ ERROR field `a` bound multiple times in the pattern
|
|
} = Foo { a: 29 };
|
|
|
|
let Foo {
|
|
a,
|
|
a: _
|
|
//~^ ERROR field `a` bound multiple times in the pattern
|
|
} = Foo { a: 29 };
|
|
|
|
let Foo {
|
|
a,
|
|
a: _,
|
|
//~^ ERROR field `a` bound multiple times in the pattern
|
|
a: x
|
|
//~^ ERROR field `a` bound multiple times in the pattern
|
|
} = Foo { a: 29 };
|
|
}
|