embassy/embassy-executor/tests/ui/nonstatic_struct_elided.stderr

11 lines
300 B
Plaintext
Raw Normal View History

2024-10-20 21:48:58 +00:00
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<'_>) {}
| ++++