mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-03 22:49:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			217 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			217 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
//@ edition:2018
 | 
						|
 | 
						|
#![deny(unreachable_code)]
 | 
						|
 | 
						|
async fn foo() {
 | 
						|
    endless().await;
 | 
						|
    println!("this is unreachable!");
 | 
						|
    //~^ ERROR unreachable statement
 | 
						|
}
 | 
						|
 | 
						|
async fn endless() -> ! {
 | 
						|
    loop {}
 | 
						|
}
 | 
						|
 | 
						|
fn main() { }
 |