mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-27 02:53:28 +00:00
10 lines
157 B
Rust
10 lines
157 B
Rust
//@ edition: 2021
|
|
|
|
async fn a() {
|
|
//~^ ERROR `()` is not a future
|
|
//~| ERROR mismatched types
|
|
a() //~ ERROR `()` is not a future
|
|
}
|
|
|
|
fn main() {}
|