2019-07-26 16:54:25 -05:00
|
|
|
// run-pass
|
2013-10-31 18:44:25 -05:00
|
|
|
// aux-build:inline_dtor.rs
|
|
|
|
|
2015-03-22 15:13:15 -05:00
|
|
|
// pretty-expanded FIXME #23616
|
|
|
|
|
2014-02-14 12:10:06 -06:00
|
|
|
extern crate inline_dtor;
|
2013-10-31 18:44:25 -05:00
|
|
|
|
2014-01-03 17:30:54 -06:00
|
|
|
pub fn main() {
|
2013-10-31 18:44:25 -05:00
|
|
|
let _x = inline_dtor::Foo;
|
|
|
|
}
|