mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-27 13:57:20 +00:00
9 lines
154 B
Rust
9 lines
154 B
Rust
//@ edition:2018
|
|
|
|
#![feature(async_closure)]
|
|
|
|
fn foo(x: &dyn async Fn()) {}
|
|
//~^ ERROR the trait `AsyncFnMut` cannot be made into an object
|
|
|
|
fn main() {}
|