mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 15:23:46 +00:00
14 lines
246 B
Rust
14 lines
246 B
Rust
//@ edition:2018
|
|
#![feature(async_closure)]
|
|
use std::future::Future;
|
|
|
|
async fn foo() {}
|
|
|
|
fn bar(f: impl Future<Output=()>) {}
|
|
|
|
fn main() {
|
|
bar(foo); //~ERROR E0277
|
|
let async_closure = async || ();
|
|
bar(async_closure); //~ERROR E0277
|
|
}
|