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