mirror of
https://github.com/embassy-rs/embassy.git
synced 2024-11-22 06:42:32 +00:00
14 lines
431 B
Plaintext
14 lines
431 B
Plaintext
error: task functions must not have `self` arguments
|
|
--> tests/ui/self_ref.rs:6:15
|
|
|
|
|
6 | async fn task(&mut self) {}
|
|
| ^^^^^^^^^
|
|
|
|
error: `self` parameter is only allowed in associated functions
|
|
--> tests/ui/self_ref.rs:6:15
|
|
|
|
|
6 | async fn task(&mut self) {}
|
|
| ^^^^^^^^^ not semantically valid as function parameter
|
|
|
|
|
= note: associated functions are those in `impl` or `trait` definitions
|