mirror of
https://github.com/embassy-rs/embassy.git
synced 2024-11-22 14:53:03 +00:00
6 lines
220 B
Plaintext
6 lines
220 B
Plaintext
error: `impl Trait` is not allowed in task arguments. It is syntax sugar for generics, and tasks can't be generic.
|
|
--> tests/ui/impl_trait.rs:4:18
|
|
|
|
|
4 | async fn foo(_x: impl Sized) {}
|
|
| ^^^^^^^^^^
|