2025-08-09 20:41:01 +02:00
|
|
|
error: `#[coroutine]` attribute cannot be used on structs
|
2024-08-01 10:03:10 +00:00
|
|
|
--> $DIR/invalid_attr_usage.rs:5:1
|
|
|
|
|
|
|
|
|
|
|
LL | #[coroutine]
|
|
|
|
|
| ^^^^^^^^^^^^
|
2025-08-09 20:41:01 +02:00
|
|
|
|
|
|
|
|
|
= help: `#[coroutine]` can only be applied to closures
|
2024-08-01 10:03:10 +00:00
|
|
|
|
2025-08-09 20:41:01 +02:00
|
|
|
error: `#[coroutine]` attribute cannot be used on functions
|
2024-08-01 10:03:10 +00:00
|
|
|
--> $DIR/invalid_attr_usage.rs:9:1
|
|
|
|
|
|
|
|
|
|
|
LL | #[coroutine]
|
|
|
|
|
| ^^^^^^^^^^^^
|
2025-08-09 20:41:01 +02:00
|
|
|
|
|
|
|
|
|
= help: `#[coroutine]` can only be applied to closures
|
2024-08-01 10:03:10 +00:00
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
|