mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-04 06:56:14 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			32 lines
		
	
	
		
			777 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			777 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
error: struct literals are not allowed here
 | 
						|
  --> $DIR/struct-literal-in-for.rs:12:14
 | 
						|
   |
 | 
						|
LL |       for x in Foo {
 | 
						|
   |  ______________^
 | 
						|
LL | |         x: 3
 | 
						|
LL | |     }.hi() {
 | 
						|
   | |_____^
 | 
						|
   |
 | 
						|
help: surround the struct literal with parentheses
 | 
						|
   |
 | 
						|
LL ~     for x in (Foo {
 | 
						|
LL |         x: 3
 | 
						|
LL ~     }).hi() {
 | 
						|
   |
 | 
						|
 | 
						|
error[E0277]: `bool` is not an iterator
 | 
						|
  --> $DIR/struct-literal-in-for.rs:12:14
 | 
						|
   |
 | 
						|
LL |       for x in Foo {
 | 
						|
   |  ______________^
 | 
						|
LL | |         x: 3
 | 
						|
LL | |     }.hi() {
 | 
						|
   | |__________^ `bool` is not an iterator
 | 
						|
   |
 | 
						|
   = help: the trait `Iterator` is not implemented for `bool`
 | 
						|
   = note: required for `bool` to implement `IntoIterator`
 | 
						|
 | 
						|
error: aborting due to 2 previous errors
 | 
						|
 | 
						|
For more information about this error, try `rustc --explain E0277`.
 |