about summary refs log tree commit diff
path: root/tests/ui/async-await/async-fn/dyn-pos.rs
blob: ab4685b07bb0d1b228f44d66fbcc15b8de3719a8 (plain)
1
2
3
4
5
6
//@ edition:2018

fn foo(x: &dyn AsyncFn()) {}
//~^ ERROR the trait `AsyncFnMut` is not dyn compatible

fn main() {}