]> git.lizzy.rs Git - rust.git/blob - src/test/ui/structs-enums/struct-partial-move-2.rs
Rollup merge of #97317 - GuillaumeGomez:gui-settings-text-click, r=jsha
[rust.git] / src / test / ui / structs-enums / struct-partial-move-2.rs
1 // run-pass
2 #[derive(PartialEq, Debug)]
3 pub struct Partial<T> { x: T, y: T }
4
5 #[derive(PartialEq, Debug)]
6 struct S { val: isize }
7 impl S { fn new(v: isize) -> S { S { val: v } } }
8 impl Drop for S { fn drop(&mut self) { } }
9
10 pub type Two<T> = (Partial<T>, Partial<T>);
11
12 pub fn f<T, F>((b1, b2): (T, T), (b3, b4): (T, T), mut f: F) -> Two<T> where F: FnMut(T) -> T {
13     let p = Partial { x: b1, y: b2 };
14     let q = Partial { x: b3, y: b4 };
15
16      // Move of `q` is legal even though we have already moved `q.y`;
17      // the `..q` moves all fields *except* `q.y` in this context.
18      // Likewise, the move of `p.x` is legal for similar reasons.
19     (Partial { x: f(q.y), ..p }, Partial { y: f(p.x), ..q })
20 }
21
22 pub fn main() {
23     let two = f((S::new(1), S::new(3)),
24                 (S::new(5), S::new(7)),
25                 |S { val: z }| S::new(z+1));
26     assert_eq!(two, (Partial { x: S::new(8), y: S::new(3) },
27                      Partial { x: S::new(5), y: S::new(2) }));
28 }