2017-12-10 13:47:55 -06:00
|
|
|
error[E0025]: field `a` bound multiple times in the pattern
|
|
|
|
--> $DIR/issue-15260.rs:18:9
|
|
|
|
|
|
2017-12-10 14:29:24 -06:00
|
|
|
17 | a: _,
|
2017-12-10 13:47:55 -06:00
|
|
|
| ---- first use of `a`
|
|
|
|
18 | a: _
|
|
|
|
| ^^^^ multiple uses of `a` in pattern
|
|
|
|
|
|
|
|
error[E0025]: field `a` bound multiple times in the pattern
|
2017-12-10 14:29:24 -06:00
|
|
|
--> $DIR/issue-15260.rs:24:9
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
2017-12-10 14:29:24 -06:00
|
|
|
23 | a,
|
2017-12-10 13:47:55 -06:00
|
|
|
| - first use of `a`
|
2017-12-10 14:29:24 -06:00
|
|
|
24 | 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
|
2017-12-10 14:29:24 -06:00
|
|
|
--> $DIR/issue-15260.rs:30:9
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
2017-12-10 14:29:24 -06:00
|
|
|
29 | a,
|
2017-12-10 13:47:55 -06:00
|
|
|
| - first use of `a`
|
2017-12-10 14:29:24 -06:00
|
|
|
30 | 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
|
2017-12-10 14:29:24 -06:00
|
|
|
--> $DIR/issue-15260.rs:32:9
|
2017-12-10 13:47:55 -06:00
|
|
|
|
|
2017-12-10 14:29:24 -06:00
|
|
|
29 | a,
|
2017-12-10 13:47:55 -06:00
|
|
|
| - first use of `a`
|
|
|
|
...
|
2017-12-10 14:29:24 -06:00
|
|
|
32 | a: x
|
2017-12-10 13:47:55 -06:00
|
|
|
| ^^^^ multiple uses of `a` in pattern
|
|
|
|
|
|
|
|
error: aborting due to 4 previous errors
|
|
|
|
|
2018-02-19 14:40:25 -06:00
|
|
|
If you want more information on this error, try using "rustc --explain E0025"
|