mirror of
https://git.proxmox.com/git/rustc
synced 2026-03-29 02:19:56 +00:00
20 lines
276 B
Plaintext
20 lines
276 B
Plaintext
//@ 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();
|
|
}
|