mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-30 20:44:34 +00:00 
			
		
		
		
	 1f9353ae2c
			
		
	
	
		1f9353ae2c
		
	
	
	
	
		
			
			Some of these tests use non-standard formatting that we can simulate by strategically adding `//` line comments. One contains `where` clauses that would be split across multiple lines, which we can keep on one line by moving the bounds to the generic type instead.
		
			
				
	
	
		
			7 lines
		
	
	
		
			80 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
		
			80 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| fn main() {
 | |
|     let num = 9;
 | |
|     while num >= 10 {
 | |
|         // loop body
 | |
|     }
 | |
| }
 |