2019-07-07 18:58:28 -05:00
|
|
|
error[E0416]: identifier `tail` is bound more than once in the same pattern
|
2019-12-29 18:37:14 -06:00
|
|
|
--> $DIR/subslice-only-once-semantic-restriction.rs:4:24
|
2018-10-20 15:36:17 -05:00
|
|
|
|
|
2019-07-07 18:58:28 -05:00
|
|
|
LL | [1, tail @ .., tail @ ..] => {},
|
|
|
|
| ^^^^ used in a pattern more than once
|
2018-10-20 15:36:17 -05:00
|
|
|
|
2019-07-07 18:58:28 -05:00
|
|
|
error: `..` can only be used once per slice pattern
|
2019-12-29 18:37:14 -06:00
|
|
|
--> $DIR/subslice-only-once-semantic-restriction.rs:4:31
|
2019-07-07 18:58:28 -05:00
|
|
|
|
|
|
|
|
LL | [1, tail @ .., tail @ ..] => {},
|
|
|
|
| -- ^^ can only be used once per slice pattern
|
|
|
|
| |
|
|
|
|
| previously used here
|
|
|
|
|
2019-07-23 19:30:37 -05:00
|
|
|
error[E0308]: mismatched types
|
2019-12-29 18:37:14 -06:00
|
|
|
--> $DIR/subslice-only-once-semantic-restriction.rs:11:30
|
2019-07-07 18:58:28 -05:00
|
|
|
|
|
2019-07-23 19:30:37 -05:00
|
|
|
LL | const RECOVERY_WITNESS: () = 0;
|
2019-11-15 11:37:01 -06:00
|
|
|
| ^ expected `()`, found integer
|
2019-07-07 18:58:28 -05:00
|
|
|
|
2019-12-29 18:23:42 -06:00
|
|
|
error: aborting due to 3 previous errors
|
2018-10-20 15:36:17 -05:00
|
|
|
|
2019-12-29 18:23:42 -06:00
|
|
|
Some errors have detailed explanations: E0308, E0416.
|
2019-07-23 19:30:37 -05:00
|
|
|
For more information about an error, try `rustc --explain E0308`.
|