mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-03 22:49:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			466 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			466 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
error: `loop...else` loops are not supported
 | 
						|
  --> $DIR/loop-else-break-with-value.rs:5:7
 | 
						|
   |
 | 
						|
LL |       let Some(1) = loop {
 | 
						|
   |                     ---- `else` is attached to this loop
 | 
						|
...
 | 
						|
LL |       } else {
 | 
						|
   |  _______^
 | 
						|
LL | |
 | 
						|
LL | |
 | 
						|
LL | |         return;
 | 
						|
LL | |     };
 | 
						|
   | |_____^
 | 
						|
   |
 | 
						|
   = note: consider moving this `else` clause to a separate `if` statement and use a `bool` variable to control if it should run
 | 
						|
 | 
						|
error: aborting due to previous error
 | 
						|
 |