rust/tests/ui/coroutine/invalid_attr_usage.rs
2024-08-03 02:28:59 +00:00

12 lines
241 B
Rust

//! The `coroutine` attribute is only allowed on closures.
#![feature(coroutines)]
#[coroutine]
//~^ ERROR: attribute should be applied to closures
struct Foo;
#[coroutine]
//~^ ERROR: attribute should be applied to closures
fn main() {}