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