mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-04 06:56:14 +00:00 
			
		
		
		
	This also removes some manipulation of the function signature span that only made sense in the context of merging non-adjacent spans.
		
			
				
	
	
		
			16 lines
		
	
	
		
			392 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			392 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
   LL|       |#![allow(unused_assignments, unused_variables)]
 | 
						|
   LL|       |
 | 
						|
   LL|       |#[rustfmt::skip]
 | 
						|
   LL|      1|fn main() {
 | 
						|
   LL|      1|    let result
 | 
						|
   LL|       |        =
 | 
						|
   LL|      1|            loop
 | 
						|
   LL|      1|        {
 | 
						|
   LL|      1|            break
 | 
						|
   LL|      1|            10
 | 
						|
   LL|      1|            ;
 | 
						|
   LL|      1|        }
 | 
						|
   LL|       |    ;
 | 
						|
   LL|      1|}
 | 
						|
 |