mirror of
https://github.com/embassy-rs/embassy.git
synced 2025-02-18 09:52:33 +00:00
11 lines
300 B
Plaintext
11 lines
300 B
Plaintext
![]() |
error[E0726]: implicit elided lifetime not allowed here
|
||
|
--> tests/ui/nonstatic_struct_elided.rs:6:19
|
||
|
|
|
||
|
6 | async fn task(_x: Foo) {}
|
||
|
| ^^^ expected lifetime parameter
|
||
|
|
|
||
|
help: indicate the anonymous lifetime
|
||
|
|
|
||
|
6 | async fn task(_x: Foo<'_>) {}
|
||
|
| ++++
|