blob: 137cb32481b9c4ab80e168224a73dbd961953191 [file] [log] [blame] [edit]
//@ edition:2018
#![deny(unreachable_code)]
async fn foo() {
endless().await;
println!("this is unreachable!");
//~^ ERROR unreachable statement
}
async fn endless() -> ! {
loop {}
}
fn main() { }