mirror of
https://github.com/embassy-rs/embassy.git
synced 2024-11-22 14:53:03 +00:00
12 lines
355 B
Plaintext
12 lines
355 B
Plaintext
error: task functions must not be generic
|
|
--> tests/ui/nonstatic_ref_generic.rs:4:1
|
|
|
|
|
4 | async fn foo<'a>(_x: &'a u32) {}
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: Arguments for tasks must live forever. Try using the `'static` lifetime.
|
|
--> tests/ui/nonstatic_ref_generic.rs:4:23
|
|
|
|
|
4 | async fn foo<'a>(_x: &'a u32) {}
|
|
| ^^
|