mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-06 10:35:37 +00:00
10 lines
215 B
Rust
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
|
|
}
|
|
}
|