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