mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 13:04:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
		
			421 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			421 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| // run-pass
 | |
| #![allow(unreachable_code)]
 | |
| pub fn main() {
 | |
|     let mut x = 0;
 | |
| 
 | |
|     'foo: loop {
 | |
|         'bar: loop {
 | |
|             loop {
 | |
|                 if 1 == 2 {
 | |
|                     break 'foo;
 | |
|                 }
 | |
|                 else {
 | |
|                     break 'bar;
 | |
|                 }
 | |
|             }
 | |
|             continue 'foo;
 | |
|         }
 | |
|         x = 42;
 | |
|         break;
 | |
|     }
 | |
| 
 | |
|     println!("{}", x);
 | |
|     assert_eq!(x, 42);
 | |
| }
 | 
