2019-08-24 14:45:03 -07:00
|
|
|
// edition:2018
|
2019-11-08 18:04:05 -08:00
|
|
|
#![feature(async_closure)]
|
2019-08-24 14:45:03 -07:00
|
|
|
use std::future::Future;
|
|
|
|
|
|
|
|
async fn foo() {}
|
|
|
|
|
|
|
|
fn bar(f: impl Future<Output=()>) {}
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
bar(foo); //~ERROR E0277
|
2019-11-08 18:04:05 -08:00
|
|
|
let async_closure = async || ();
|
|
|
|
bar(async_closure); //~ERROR E0277
|
2019-08-24 14:45:03 -07:00
|
|
|
}
|