mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
19 lines
276 B
Rust
19 lines
276 B
Rust
//@ run-rustfix
|
|
|
|
// check to make sure that we suggest adding `move` after `static`
|
|
|
|
#![feature(coroutines)]
|
|
|
|
fn check() -> impl Sized {
|
|
let x = 0;
|
|
#[coroutine]
|
|
static move || {
|
|
//~^ ERROR E0373
|
|
yield;
|
|
x
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
check();
|
|
}
|