2024-01-25 11:43:35 -06:00
|
|
|
// edition:2021
|
|
|
|
|
|
|
|
// FIXME(async_closures): This needs a better error message!
|
|
|
|
|
2024-02-06 11:41:48 -06:00
|
|
|
#![feature(async_closure)]
|
2024-01-25 11:43:35 -06:00
|
|
|
|
|
|
|
fn main() {
|
2024-02-06 11:41:48 -06:00
|
|
|
fn needs_async_fn(_: impl async Fn()) {}
|
2024-01-25 11:43:35 -06:00
|
|
|
|
|
|
|
let mut x = 1;
|
|
|
|
needs_async_fn(async || {
|
2024-02-14 17:52:57 -06:00
|
|
|
//~^ ERROR expected a closure that implements the `async Fn` trait, but this closure only implements `async FnMut`
|
2024-01-25 11:43:35 -06:00
|
|
|
x += 1;
|
|
|
|
});
|
|
|
|
}
|