mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
36 lines
972 B
Text
36 lines
972 B
Text
error[E0025]: field `a` bound multiple times in the pattern
|
|
--> $DIR/issue-15260.rs:8:9
|
|
|
|
|
LL | a: _,
|
|
| ---- first use of `a`
|
|
LL | a: _
|
|
| ^^^^ multiple uses of `a` in pattern
|
|
|
|
error[E0025]: field `a` bound multiple times in the pattern
|
|
--> $DIR/issue-15260.rs:14:9
|
|
|
|
|
LL | a,
|
|
| - first use of `a`
|
|
LL | a: _
|
|
| ^^^^ multiple uses of `a` in pattern
|
|
|
|
error[E0025]: field `a` bound multiple times in the pattern
|
|
--> $DIR/issue-15260.rs:20:9
|
|
|
|
|
LL | a,
|
|
| - first use of `a`
|
|
LL | a: _,
|
|
| ^^^^ multiple uses of `a` in pattern
|
|
|
|
error[E0025]: field `a` bound multiple times in the pattern
|
|
--> $DIR/issue-15260.rs:22:9
|
|
|
|
|
LL | a,
|
|
| - first use of `a`
|
|
...
|
|
LL | a: x
|
|
| ^^^^ multiple uses of `a` in pattern
|
|
|
|
error: aborting due to 4 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0025`.
|