]> git.lizzy.rs Git - rust.git/blob - src/test/run-fail/morestack4.rs
switch Drop to `&mut self`
[rust.git] / src / test / run-fail / morestack4.rs
1 // Copyright 2012 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 // xfail-test newsched transition
12 // error-pattern:explicit failure
13
14 // Just testing unwinding
15
16 extern mod extra;
17
18 use std::task;
19
20 fn getbig_and_fail(i: int) {
21     let r = and_then_get_big_again(5);
22     if i != 0 {
23         getbig_and_fail(i - 1);
24     } else {
25         fail!();
26     }
27 }
28
29 struct and_then_get_big_again {
30   x:int,
31 }
32
33 impl Drop for and_then_get_big_again {
34     fn drop(&mut self) {}
35 }
36
37 fn and_then_get_big_again(x:int) -> and_then_get_big_again {
38     and_then_get_big_again {
39         x: x
40     }
41 }
42
43 fn main() {
44     do task::spawn {
45         getbig_and_fail(1);
46     };
47 }