mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-30 20:44:34 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			379 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			379 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| error: invalid struct literal
 | |
|   --> $DIR/method-call-on-struct-literal-in-if-condition.rs:10:8
 | |
|    |
 | |
| LL |     if Example { a: one(), }.is_pos() {
 | |
|    |        ^^^^^^^^^^^^^^^^^^^^^
 | |
|    |
 | |
| help: you might need to surround the struct literal in parentheses
 | |
|    |
 | |
| LL |     if (Example { a: one(), }).is_pos() {
 | |
|    |        +                     +
 | |
| 
 | |
| error: aborting due to previous error
 | |
| 
 | 
