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