mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-30 20:44:34 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			229 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			229 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| fn main() {
 | |
|     struct S {
 | |
|         foo: (),
 | |
|         bar: (),
 | |
|     }
 | |
| 
 | |
|     let a = S { foo: (), bar: () };
 | |
|     let b = S { foo: () with a, bar: () };
 | |
|     //~^ ERROR expected one of `,`, `.`, `?`, `}`, or an operator, found `with`
 | |
| }
 | 
