Was testing my code by injecting an early exit and found that it ICEd. Here is a repro (with rust 0.4): ``` // rustc early_exit.rs fn main() { libc::exit(0); error!("ack"); } ```