rust/tests/ui/binding/match-implicit-copy-unique.rs
2024-02-16 20:02:50 +00:00

17 lines
394 B
Rust

//@ run-pass
#![allow(non_shorthand_field_patterns)]
struct Pair { a: Box<isize>, b: Box<isize> }
pub fn main() {
let mut x: Box<_> = Box::new(Pair { a: Box::new(10), b: Box::new(20) });
let x_internal = &mut *x;
match *x_internal {
Pair {a: ref mut a, b: ref mut _b} => {
assert_eq!(**a, 10);
*a = Box::new(30);
assert_eq!(**a, 30);
}
}
}