2017-12-10 22:47:55 +03:00
|
|
|
error[E0025]: field `a` bound multiple times in the pattern
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/issue-15260.rs:8:9
|
2017-12-10 22:47:55 +03:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | a: _,
|
2017-12-10 22:47:55 +03:00
|
|
|
| ---- first use of `a`
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | a: _
|
2017-12-10 22:47:55 +03:00
|
|
|
| ^^^^ multiple uses of `a` in pattern
|
|
|
|
|
|
|
|
error[E0025]: field `a` bound multiple times in the pattern
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/issue-15260.rs:14:9
|
2017-12-10 22:47:55 +03:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | a,
|
2017-12-10 22:47:55 +03:00
|
|
|
| - first use of `a`
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | a: _
|
2017-12-10 22:47:55 +03:00
|
|
|
| ^^^^ multiple uses of `a` in pattern
|
|
|
|
|
|
|
|
error[E0025]: field `a` bound multiple times in the pattern
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/issue-15260.rs:20:9
|
2017-12-10 22:47:55 +03:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | a,
|
2017-12-10 22:47:55 +03:00
|
|
|
| - first use of `a`
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | a: _,
|
2017-12-10 22:47:55 +03:00
|
|
|
| ^^^^ multiple uses of `a` in pattern
|
|
|
|
|
|
|
|
error[E0025]: field `a` bound multiple times in the pattern
|
2018-12-25 08:56:47 -07:00
|
|
|
--> $DIR/issue-15260.rs:22:9
|
2017-12-10 22:47:55 +03:00
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | a,
|
2017-12-10 22:47:55 +03:00
|
|
|
| - first use of `a`
|
|
|
|
...
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | a: x
|
2017-12-10 22:47:55 +03:00
|
|
|
| ^^^^ multiple uses of `a` in pattern
|
|
|
|
|
|
|
|
error: aborting due to 4 previous errors
|
|
|
|
|
2018-03-03 15:59:40 +01:00
|
|
|
For more information about this error, try `rustc --explain E0025`.
|