1 2 3 4 5 6 7 8 9 10
struct S(i32); fn foo(x: Vec<S>) { for y in x { } let z = x; //~ ERROR use of moved value: `x` } fn main() {}