2019-07-07 18:58:28 -05:00
|
|
|
error[E0416]: identifier `tail` is bound more than once in the same pattern
|
|
|
|
--> $DIR/match-vec-invalid.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[E0658]: subslice patterns are unstable
|
|
|
|
--> $DIR/match-vec-invalid.rs:4:13
|
|
|
|
|
|
|
|
|
LL | [1, tail @ .., tail @ ..] => {},
|
|
|
|
| ^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: for more information, see https://github.com/rust-lang/rust/issues/62254
|
2019-07-10 09:18:01 -05:00
|
|
|
= help: add `#![feature(slice_patterns)]` to the crate attributes to enable
|
2019-07-07 18:58:28 -05:00
|
|
|
|
|
|
|
error[E0658]: subslice patterns are unstable
|
|
|
|
--> $DIR/match-vec-invalid.rs:4:24
|
|
|
|
|
|
|
|
|
LL | [1, tail @ .., tail @ ..] => {},
|
|
|
|
| ^^^^^^^^^
|
|
|
|
|
|
|
|
|
= note: for more information, see https://github.com/rust-lang/rust/issues/62254
|
2019-07-10 09:18:01 -05:00
|
|
|
= help: add `#![feature(slice_patterns)]` to the crate attributes to enable
|
2019-07-07 18:58:28 -05:00
|
|
|
|
|
|
|
error: `..` can only be used once per slice pattern
|
|
|
|
--> $DIR/match-vec-invalid.rs:4:31
|
|
|
|
|
|
|
|
|
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
|
|
|
|
--> $DIR/match-vec-invalid.rs:13: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
|
|
|
|
|
|
|
error: aborting due to 5 previous errors
|
2018-10-20 15:36:17 -05:00
|
|
|
|
2019-07-23 19:30:37 -05:00
|
|
|
Some errors have detailed explanations: E0308, E0416, E0658.
|
|
|
|
For more information about an error, try `rustc --explain E0308`.
|