mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-03 02:40:40 +00:00
12 lines
217 B
Rust
12 lines
217 B
Rust
//! The `coroutine` attribute is only allowed on closures.
|
|
|
|
#![feature(coroutines)]
|
|
|
|
#[coroutine]
|
|
//~^ ERROR: attribute cannot be used on
|
|
struct Foo;
|
|
|
|
#[coroutine]
|
|
//~^ ERROR: attribute cannot be used on
|
|
fn main() {}
|