mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 04:57:19 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			176 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			176 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| // run-pass
 | |
| struct Foo(isize, isize);
 | |
| 
 | |
| pub fn main() {
 | |
|     let x = Foo(1, 2);
 | |
|     let Foo(y, z) = x;
 | |
|     println!("{} {}", y, z);
 | |
|     assert_eq!(y, 1);
 | |
|     assert_eq!(z, 2);
 | |
| }
 | 
