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