]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-15381.rs
Require Drop impls to have the same constness on its bounds as the bounds on the...
[rust.git] / src / test / ui / issues / issue-15381.rs
1 fn main() {
2     let values: Vec<u8> = vec![1,2,3,4,5,6,7,8];
3
4     for &[x,y,z] in values.chunks(3).filter(|&xs| xs.len() == 3) {
5         //~^ ERROR refutable pattern in `for` loop binding: `&[]`, `&[_]`, `&[_, _]` and 1 more not
6         println!("y={}", y);
7     }
8 }