mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-04 06:56:14 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			427 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			427 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
//! Regression test for https://github.com/rust-lang/rust/issues/15381
 | 
						|
 | 
						|
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
 | 
						|
        //~| NOTE patterns `&[]`, `&[_]`, `&[_, _]` and 1 more not covered
 | 
						|
        //~| NOTE the matched value is of type `&[u8]`
 | 
						|
        println!("y={}", y);
 | 
						|
    }
 | 
						|
}
 |