rust/src/test/ui/rfc-2005-default-binding-mode/for.rs

10 lines
215 B
Rust

struct Foo {}
pub fn main() {
let mut tups = vec![(Foo {}, Foo {})];
// The below desugars to &(ref n, mut m).
for (n, mut m) in &tups {
//~^ ERROR cannot move out of a shared reference
}
}