mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-27 17:24:06 +00:00
12 lines
343 B
Rust
12 lines
343 B
Rust
//@ edition:2018
|
|
|
|
#![feature(async_closure)]
|
|
|
|
fn foo(x: &dyn async Fn()) {}
|
|
//~^ 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() {}
|