mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-30 04:24:26 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			415 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			415 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| error: `while...else` loops are not supported
 | |
|   --> $DIR/while-else-err.rs:4:7
 | |
|    |
 | |
| LL |       while false {
 | |
|    |       ----- `else` is attached to this loop
 | |
| LL |
 | |
| LL |       } else {
 | |
|    |  _______^
 | |
| LL | |
 | |
| LL | |
 | |
| 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 1 previous error
 | |
| 
 | 
