rust/tests/ui/error-codes/E0528.rs

9 lines
125 B
Rust
Raw Normal View History

2016-08-30 11:13:37 +00:00
fn main() {
let r = &[1, 2];
match r {
2019-07-07 23:47:46 +00:00
&[a, b, c, rest @ ..] => {
2016-09-01 22:46:30 +00:00
//~^ ERROR E0528
2016-08-30 11:13:37 +00:00
}
}
}