rust/tests/ui/coroutine/invalid_attr_usage.rs
Jonathan Brouwer 4bb7bf64e0
Update uitests
Signed-off-by: Jonathan Brouwer <jonathantbrouwer@gmail.com>
2025-08-14 18:18:42 +02:00

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() {}