rust/tests/ui/array-slice-vec/subslice-only-once-semantic-restriction.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

25 lines
926 B
Plaintext
Raw Normal View History

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