blob: 155c858af37e691a5584c9a2c61a6e41e99cfe2b (
plain)
1
2
3
4
5
6
7
8
9
|
error[E0005]: refutable pattern in function argument: `&[]` not covered
--> $DIR/const_let_refutable.rs:3:16
|
LL | const fn slice([a, b]: &[i32]) -> i32 {
| ^^^^^^ pattern `&[]` not covered
error: aborting due to previous error
For more information about this error, try `rustc --explain E0005`.
|