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