2024-02-16 14:02:50 -06:00
|
|
|
//@ edition:2018
|
2024-01-26 11:00:34 -06:00
|
|
|
|
|
|
|
#![feature(async_closure)]
|
|
|
|
|
|
|
|
fn foo(x: &dyn async Fn()) {}
|
|
|
|
//~^ ERROR the trait `AsyncFn` cannot be made into an object
|
|
|
|
//~| ERROR the trait `AsyncFn` cannot be made into an object
|
|
|
|
//~| ERROR the trait `AsyncFn` cannot be made into an object
|
|
|
|
//~| ERROR the trait `AsyncFn` cannot be made into an object
|
|
|
|
//~| ERROR the trait `AsyncFnMut` cannot be made into an object
|
|
|
|
//~| ERROR the trait `AsyncFnMut` cannot be made into an object
|
|
|
|
//~| ERROR the trait `AsyncFnMut` cannot be made into an object
|
|
|
|
|
|
|
|
fn main() {}
|