summary refs log tree commit diff
path: root/src/test/ui/issues/issue-15381.rs
blob: d21c321b09399a79e9d7f5f365ccc3cb3db92fb4 (plain)
1
2
3
4
5
6
7
8
9
fn main() {
    let values: Vec<u8> = vec![1,2,3,4,5,6,7,8];

    for &[x,y,z] in values.chunks(3).filter(|&xs| xs.len() == 3) {
        //~^ ERROR refutable pattern in `for` loop binding: `&[]` not covered
        println!("y={}", y);
        //~^ ERROR borrow of possibly uninitialized variable: `y`
    }
}