blob: 995a3aa3100fc26eb2d07d4316aeebb23e3feca0 [file] [log] [blame]
//! 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() {}