mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-03 21:05:00 +00:00
11 lines
241 B
Rust
11 lines
241 B
Rust
fn main() {
|
|
struct U;
|
|
|
|
// A tuple is a "non-reference pattern".
|
|
// A `mut` binding pattern resets the binding mode to by-value.
|
|
|
|
let p = (U, U);
|
|
let (a, mut b) = &p;
|
|
//~^ ERROR cannot move out of a shared reference
|
|
}
|