mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-28 02:57:37 +00:00
17 lines
495 B
Plaintext
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
|
|
|