summary refs log tree commit diff
path: root/src/test/ui/consts/const_let_refutable.stderr
blob: c5d2ba02a70c613917b178033ba76eab9ad07545 (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 { //~ ERROR refutable pattern in function argument
   |                ^^^^^^ pattern `&[]` not covered

error: aborting due to previous error

For more information about this error, try `rustc --explain E0005`.