blob: 7a7fd5daa961f8879c0d2cce7b081141873885e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
// error-pattern:explicit failure
// This time we're testing that the stack limits are restored
// correctly after calling into the C stack and unwinding.
// See the hack in upcall_call_shim_on_c_stack where it messes
// with the stack limit.
use std;
extern mod rustrt {
fn last_os_error() -> str;
}
fn getbig_call_c_and_fail(i: int) {
if i != 0 {
getbig_call_c_and_fail(i - 1);
} else {
rustrt::last_os_error();
fail;
}
}
class and_then_get_big_again {
let x:int;
new(x:int) {self.x = x;}
drop {
fn getbig(i: int) {
if i != 0 {
getbig(i - 1);
}
}
getbig(10000);
}
}
fn main() {
do task::spawn {
let r = and_then_get_big_again(4);
getbig_call_c_and_fail(10000);
};
}
|