2024-08-01 10:03:10 +00:00
|
|
|
//! The `coroutine` attribute is only allowed on closures.
|
|
|
|
|
|
|
|
|
|
#![feature(coroutines)]
|
|
|
|
|
|
|
|
|
|
#[coroutine]
|
2025-08-09 20:41:01 +02:00
|
|
|
//~^ ERROR: attribute cannot be used on
|
2024-08-01 10:03:10 +00:00
|
|
|
struct Foo;
|
|
|
|
|
|
|
|
|
|
#[coroutine]
|
2025-08-09 20:41:01 +02:00
|
|
|
//~^ ERROR: attribute cannot be used on
|
2024-08-01 10:03:10 +00:00
|
|
|
fn main() {}
|