embassy/embassy-executor/tests/ui/impl_trait_nested.stderr
2024-10-20 23:54:17 +02:00

6 lines
256 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_nested.rs:6:22
|
6 | async fn foo(_x: Foo<impl Sized + 'static>) {}
| ^^^^^^^^^^^^^^^^^^^^