mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
20 lines
271 B
Rust
20 lines
271 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 || {
|
||
|
//~^ ERROR E0373
|
||
|
yield;
|
||
|
x
|
||
|
}
|
||
|
}
|
||
|
|
||
|
fn main() {
|
||
|
check();
|
||
|
}
|