rust/tests/ui/async-await/unreachable-lint-2.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
217 B
Rust
Raw Normal View History

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