]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/nested-vec-3.rs
Auto merge of #25975 - arielb1:remove-param-space, r=nikomatsakis
[rust.git] / src / test / run-pass / nested-vec-3.rs
1 // Copyright 2015 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // Test that using the `vec!` macro nested within itself works when
12 // the contents implement Drop and we hit a panic in the middle of
13 // construction.
14
15 #![feature(const_fn)]
16
17 use std::thread;
18 use std::sync::atomic::{AtomicUsize, Ordering};
19
20 static LOG: AtomicUsize = AtomicUsize::new(0);
21
22 struct D(u8);
23
24 impl Drop for D {
25     fn drop(&mut self) {
26         println!("Dropping {}", self.0);
27         let old = LOG.load(Ordering::SeqCst);
28         LOG.compare_and_swap(old, old << 4 | self.0 as usize, Ordering::SeqCst);
29     }
30 }
31
32 fn main() {
33     fn die() -> D { panic!("Oh no"); }
34     let g = thread::spawn(|| {
35         let _nested = vec![vec![D( 1), D( 2), D( 3), D( 4)],
36                            vec![D( 5), D( 6), D( 7), D( 8)],
37                            vec![D( 9), D(10), die(), D(12)],
38                            vec![D(13), D(14), D(15), D(16)]];
39     });
40     assert!(g.join().is_err());
41
42     // When the panic occurs, we will be in the midst of constructing the
43     // second inner vector.  Therefore, we drop the elements of the
44     // partially filled vector first, before we get around to dropping
45     // the elements of the filled vector.
46
47     // Issue 23222: The order in which the elements actually get
48     // dropped is a little funky: as noted above, we'll drop the 9+10
49     // first, but due to #23222, they get dropped in reverse
50     // order. Likewise, again due to #23222, we will drop the second
51     // filled vec before the first filled vec.
52     //
53     // If Issue 23222 is "fixed", then presumably the corrected
54     // expected order of events will be 0x__9_A__1_2_3_4__5_6_7_8;
55     // that is, we would still drop 9+10 first, since they belong to
56     // the more deeply nested expression when the panic occurs.
57
58     let expect = 0x__A_9__5_6_7_8__1_2_3_4;
59     let actual = LOG.load(Ordering::SeqCst);
60     assert!(actual == expect, "expect: 0x{:x} actual: 0x{:x}", expect, actual);
61 }