]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/cleanup-rvalue-temp-during-incomplete-alloc.rs
cleanup: s/impl Copy/#[derive(Copy)]/g
[rust.git] / src / test / run-pass / cleanup-rvalue-temp-during-incomplete-alloc.rs
1 // Copyright 2014 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 cleanup of rvalue temporary that occurs while `box` construction
12 // is in progress. This scenario revealed a rather terrible bug.  The
13 // ingredients are:
14 //
15 // 1. Partial cleanup of `box` is in scope,
16 // 2. cleanup of return value from `get_bar()` is in scope,
17 // 3. do_it() panics.
18 //
19 // This led to a bug because `the top-most frame that was to be
20 // cleaned (which happens to be the partial cleanup of `box`) required
21 // multiple basic blocks, which led to us dropping part of the cleanup
22 // from the top-most frame.
23 //
24 // It's unclear how likely such a bug is to recur, but it seems like a
25 // scenario worth testing.
26
27 #![allow(unknown_features)]
28 #![feature(box_syntax)]
29
30 use std::thread::Thread;
31
32 enum Conzabble {
33     Bickwick(Foo)
34 }
35
36 struct Foo { field: Box<uint> }
37
38 fn do_it(x: &[uint]) -> Foo {
39     panic!()
40 }
41
42 fn get_bar(x: uint) -> Vec<uint> { vec!(x * 2) }
43
44 pub fn fails() {
45     let x = 2;
46     let mut y = Vec::new();
47     y.push(box Conzabble::Bickwick(do_it(get_bar(x).as_slice())));
48 }
49
50 pub fn main() {
51     Thread::scoped(fails).join();
52 }