]> git.lizzy.rs Git - rust.git/blob - src/test/ui/match/issue-27021.rs
Auto merge of #106349 - LeSeulArtichaut:dyn-star-tracking-issue, r=jackh726
[rust.git] / src / test / ui / match / issue-27021.rs
1 // run-pass
2
3 // This test is bogus (i.e., should be check-fail) during the period
4 // where #54986 is implemented and #54987 is *not* implemented. For
5 // now: just ignore it
6 //
7 // ignore-test
8
9 // These are variants of issue-26996.rs. In all cases we are writing
10 // into a record field that has been moved out of, and ensuring that
11 // such a write won't overwrite the state of the thing it was moved
12 // into.
13 //
14 // That's a fine thing to test when this code is accepted by the
15 // compiler, and this code is being transcribed accordingly into
16 // the ui test issue-21232-partial-init-and-use.rs
17
18 fn main() {
19     let mut c = (1, (1, "".to_owned()));
20     match c {
21         c2 => { (c.1).0 = 2; assert_eq!((c2.1).0, 1); }
22     }
23
24     let mut c = (1, (1, (1, "".to_owned())));
25     match c.1 {
26         c2 => { ((c.1).1).0 = 3; assert_eq!((c2.1).0, 1); }
27     }
28 }