rust/src/test/ui/parser/match-vec-invalid.rs
2019-07-28 06:53:39 +02:00

13 lines
420 B
Rust

fn main() {
let a: &[u8] = &[];
match a {
[1, tail @ .., tail @ ..] => {},
//~^ ERROR identifier `tail` is bound more than once in the same pattern
//~| ERROR subslice patterns are unstable
//~| ERROR subslice patterns are unstable
//~| ERROR `..` can only be used once per slice pattern
_ => ()
}
}
const RECOVERY_WITNESS: () = 0; //~ ERROR mismatched types