rust/src/test/run-fail/mir_codegen_calls_diverging_drops.rs
2018-12-25 21:08:33 -07:00

22 lines
348 B
Rust

// error-pattern:diverging_fn called
// error-pattern:0 dropped
struct Droppable(u8);
impl Drop for Droppable {
fn drop(&mut self) {
eprintln!("{} dropped", self.0);
}
}
fn diverging_fn() -> ! {
panic!("diverging_fn called")
}
fn mir(d: Droppable) {
diverging_fn();
}
fn main() {
let d = Droppable(0);
mir(d);
}