about summary refs log tree commit diff
path: root/tests/ui/coroutine/invalid_attr_usage.rs
blob: 5081c17de4bae2fab9dad23845e215d996fe7c13 (plain)
1
2
3
4
5
6
7
8
9
10
11
//! 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() {}