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

17 lines
527 B
Plaintext
Raw Normal View History

error[E0004]: non-exhaustive patterns: `&[]` not covered
2019-12-30 01:23:42 +01:00
--> $DIR/slice.rs:4:11
|
2019-03-09 15:03:44 +03:00
LL | match sl {
| ^^ pattern `&[]` not covered
|
= note: the matched value is of type `&[u8]`
help: ensure that all possible cases are being handled by adding a match arm with a wildcard pattern or an explicit pattern as shown
|
LL ~ [first, remainder @ ..] => {}
LL ~ &[] => todo!(),
|
error: aborting due to previous error
2018-03-03 15:59:40 +01:00
For more information about this error, try `rustc --explain E0004`.