rust/tests/ui/coroutine/static-move-suggestion.rs
2024-05-19 19:23:38 -05:00

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();
}