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