rust/src/test/run-fail/mir_codegen_calls_diverging_drops.rs

23 lines
348 B
Rust
Raw Normal View History

2015-12-21 10:58:18 -06:00
// error-pattern:diverging_fn called
// error-pattern:0 dropped
2015-12-14 17:40:43 -06:00
2015-12-21 10:58:18 -06:00
struct Droppable(u8);
impl Drop for Droppable {
fn drop(&mut self) {
eprintln!("{} dropped", self.0);
2015-12-21 10:58:18 -06:00
}
}
fn diverging_fn() -> ! {
panic!("diverging_fn called")
}
fn mir(d: Droppable) {
diverging_fn();
}
fn main() {
let d = Droppable(0);
mir(d);
}