mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-27 17:24:06 +00:00
13 lines
161 B
Rust
13 lines
161 B
Rust
|
//@ edition:2018
|
||
|
#![deny(unreachable_code)]
|
||
|
|
||
|
async fn foo() {
|
||
|
return; bar().await;
|
||
|
//~^ ERROR unreachable statement
|
||
|
}
|
||
|
|
||
|
async fn bar() {
|
||
|
}
|
||
|
|
||
|
fn main() { }
|