rust/tests/ui/consts/const_let_refutable.stderr

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

12 lines
391 B
Plaintext
Raw Normal View History

2022-12-24 04:02:23 +08:00
error[E0005]: refutable pattern in function argument
--> $DIR/const_let_refutable.rs:3:16
|
2019-12-28 01:53:00 +08:00
LL | const fn slice(&[a, b]: &[i32]) -> i32 {
| ^^^^^^^ patterns `&[]`, `&[_]` and `&[_, _, _, ..]` not covered
|
= note: the matched value is of type `&[i32]`
error: aborting due to 1 previous error
2020-05-22 03:49:38 +08:00
For more information about this error, try `rustc --explain E0005`.