mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 13:04:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			257 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			257 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| fn main() {
 | |
|     struct S {
 | |
|         foo: (),
 | |
|         bar: (),
 | |
|     }
 | |
| 
 | |
|     let a = S { foo: (), bar: () };
 | |
|     let b = S { foo: (), with a };
 | |
|     //~^ ERROR expected one of `,`, `:`, or `}`, found `a`
 | |
|     //~| ERROR missing field `bar` in initializer of `S`
 | |
| }
 | 
