d984f127f6
bindings_after_at: harden tests
12 lines
246 B
Rust
12 lines
246 B
Rust
#![feature(move_ref_pattern)]
|
|
|
|
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
|
|
}
|
|
}
|