mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-02 10:18:25 +00:00
19 lines
444 B
Plaintext
19 lines
444 B
Plaintext
error: `#[coroutine]` attribute cannot be used on structs
|
|
--> $DIR/invalid_attr_usage.rs:5:1
|
|
|
|
|
LL | #[coroutine]
|
|
| ^^^^^^^^^^^^
|
|
|
|
|
= help: `#[coroutine]` can only be applied to closures
|
|
|
|
error: `#[coroutine]` attribute cannot be used on functions
|
|
--> $DIR/invalid_attr_usage.rs:9:1
|
|
|
|
|
LL | #[coroutine]
|
|
| ^^^^^^^^^^^^
|
|
|
|
|
= help: `#[coroutine]` can only be applied to closures
|
|
|
|
error: aborting due to 2 previous errors
|
|
|