Sign in
rust
/
rust
/
52dff85c4e5b68b8a5a871cf7a35b1bf9cbb5028
/
.
/
tests
/
ui
/
coroutine
/
invalid_attr_usage.rs
blob: 5081c17de4bae2fab9dad23845e215d996fe7c13 [
file
]
//! 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
()
{}