mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 13:04:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			173 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			173 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| struct Foo {
 | |
|     x: i32,
 | |
|     y: i32
 | |
| }
 | |
| 
 | |
| fn main() {
 | |
|     let (x, y, z) = (0, 1, 2);
 | |
|     let foo = Foo {
 | |
|         x, y, z //~ ERROR struct `Foo` has no field named `z`
 | |
|     };
 | |
| }
 | 
