]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-15381.stderr
Auto merge of #57108 - Mark-Simulacrum:license-remove, r=pietroalbini
[rust.git] / src / test / ui / issues / issue-15381.stderr
1 error[E0005]: refutable pattern in `for` loop binding: `&[]` not covered
2   --> $DIR/issue-15381.rs:4:9
3    |
4 LL |     for &[x,y,z] in values.chunks(3).filter(|&xs| xs.len() == 3) {
5    |         ^^^^^^^^ pattern `&[]` not covered
6
7 error: aborting due to previous error
8
9 For more information about this error, try `rustc --explain E0005`.