]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/cleanup-rvalue-temp-during-incomplete-alloc.rs
526819940d00322f28cd68124b15969348b92276
[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 use std::thread::Thread;
28
29 enum Conzabble {
30     Bickwick(Foo)
31 }
32
33 struct Foo { field: Box<uint> }
34
35 fn do_it(x: &[uint]) -> Foo {
36     panic!()
37 }
38
39 fn get_bar(x: uint) -> Vec<uint> { vec!(x * 2) }
40
41 pub fn fails() {
42     let x = 2;
43     let mut y = Vec::new();
44     y.push(box Conzabble::Bickwick(do_it(get_bar(x).as_slice())));
45 }
46
47 pub fn main() {
48     Thread::scoped(fails).join();
49 }