rust/tests/ui/loops/issue-82916.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
125 B
Rust
Raw Normal View History

struct S(i32);
fn foo(x: Vec<S>) {
for y in x {
}
let z = x; //~ ERROR use of moved value: `x`
}
fn main() {}