// Copyright 2015 The Rust Project Developers. See the COPYRIGHT // file at the top-level directory of this distribution and at // http://rust-lang.org/COPYRIGHT. // // Licensed under the Apache License, Version 2.0 or the MIT license // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. #![feature(rustc_attrs)] // error-pattern:diverging_fn called // error-pattern:0 dropped use std::io::{self, Write}; struct Droppable(u8); impl Drop for Droppable { fn drop(&mut self) { write!(io::stderr(), "{} dropped", self.0); } } fn diverging_fn() -> ! { panic!("diverging_fn called") } #[rustc_mir] fn mir(d: Droppable) { diverging_fn(); } fn main() { let d = Droppable(0); mir(d); }