rust/src/test/run-fail/rt-set-exit-status-fail2.rs
2012-09-07 14:02:33 -07:00

25 lines
412 B
Rust

// error-pattern:whatever
struct r {
x:int,
// Setting the exit status after the runtime has already
// failed has no effect and the process exits with the
// runtime's exit code
drop {
os::set_exit_status(50);
}
}
fn r(x:int) -> r {
r {
x: x
}
}
fn main() {
log(error, ~"whatever");
do task::spawn {
let i = r(5);
};
fail;
}