Sign in
rust
/
rust
/
3d58b04b2dfc6833cc90988ca4d925fcfa69964f
/
.
/
tests
/
ui
/
coroutine
/
invalid_attr_usage.rs
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
()
{}