rust/tests/ui/async-await/async-closures/not-fn.stderr
2024-12-13 00:04:56 +00:00

17 lines
495 B
Plaintext

error: async closure does not implement `FnMut` because it captures state from its environment
--> $DIR/not-fn.rs:9:14
|
LL | needs_fn(async || {
| -------- ^^^^^^^^
| |
| required by a bound introduced by this call
|
note: required by a bound in `needs_fn`
--> $DIR/not-fn.rs:6:28
|
LL | fn needs_fn<T>(_: impl FnMut() -> T) {}
| ^^^^^^^^^^^^ required by this bound in `needs_fn`
error: aborting due to 1 previous error