mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 07:00:47 +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() { }
|