]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/cleanup-rvalue-temp-during-incomplete-alloc.rs
test: Make manual changes to deal with the fallout from removal of
[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 `~` construction
12 // is in progress. This scenario revealed a rather terrible bug.  The
13 // ingredients are:
14 //
15 // 1. Partial cleanup of `~` is in scope,
16 // 2. cleanup of return value from `get_bar()` is in scope,
17 // 3. do_it() fails.
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 `~`) 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::task;
28 use std::vec_ng::Vec;
29
30 enum Conzabble {
31     Bickwick(Foo)
32 }
33
34 struct Foo { field: ~uint }
35
36 fn do_it(x: &[uint]) -> Foo {
37     fail!()
38 }
39
40 fn get_bar(x: uint) -> Vec<uint> { vec!(x * 2) }
41
42 pub fn fails() {
43     let x = 2;
44     let mut y = Vec::new();
45     y.push(~Bickwick(do_it(get_bar(x).as_slice())));
46 }
47
48 pub fn main() {
49     task::try(fails);
50 }