2021-04-03 06:05:11 -05:00
|
|
|
//
|
2018-05-08 08:10:16 -05:00
|
|
|
// compile-flags:-Zprint-mono-items=eager
|
2017-10-06 16:59:33 -05:00
|
|
|
// compile-flags:-Zinline-in-all-cgus
|
2015-11-02 07:46:39 -06:00
|
|
|
|
|
|
|
#![deny(dead_code)]
|
2017-12-22 08:31:51 -06:00
|
|
|
#![feature(start)]
|
2015-11-02 07:46:39 -06:00
|
|
|
|
2021-02-14 15:42:38 -06:00
|
|
|
//~ MONO_ITEM fn std::ptr::drop_in_place::<StructWithDrop> - shim(Some(StructWithDrop)) @@ non_generic_drop_glue-cgu.0[Internal]
|
2015-11-02 07:46:39 -06:00
|
|
|
struct StructWithDrop {
|
|
|
|
x: i32
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Drop for StructWithDrop {
|
2020-08-28 08:31:03 -05:00
|
|
|
//~ MONO_ITEM fn <StructWithDrop as std::ops::Drop>::drop
|
2015-11-02 07:46:39 -06:00
|
|
|
fn drop(&mut self) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
struct StructNoDrop {
|
|
|
|
x: i32
|
|
|
|
}
|
|
|
|
|
2021-02-14 15:42:38 -06:00
|
|
|
//~ MONO_ITEM fn std::ptr::drop_in_place::<EnumWithDrop> - shim(Some(EnumWithDrop)) @@ non_generic_drop_glue-cgu.0[Internal]
|
2015-11-02 07:46:39 -06:00
|
|
|
enum EnumWithDrop {
|
|
|
|
A(i32)
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Drop for EnumWithDrop {
|
2020-08-28 08:31:03 -05:00
|
|
|
//~ MONO_ITEM fn <EnumWithDrop as std::ops::Drop>::drop
|
2015-11-02 07:46:39 -06:00
|
|
|
fn drop(&mut self) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
enum EnumNoDrop {
|
|
|
|
A(i32)
|
|
|
|
}
|
|
|
|
|
2020-08-28 08:31:03 -05:00
|
|
|
//~ MONO_ITEM fn start
|
2017-12-22 08:31:51 -06:00
|
|
|
#[start]
|
|
|
|
fn start(_: isize, _: *const *const u8) -> isize {
|
2015-11-02 07:46:39 -06:00
|
|
|
let _ = StructWithDrop { x: 0 }.x;
|
|
|
|
let _ = StructNoDrop { x: 0 }.x;
|
|
|
|
let _ = match EnumWithDrop::A(0) {
|
|
|
|
EnumWithDrop::A(x) => x
|
|
|
|
};
|
|
|
|
let _ = match EnumNoDrop::A(0) {
|
|
|
|
EnumNoDrop::A(x) => x
|
|
|
|
};
|
2017-12-22 08:31:51 -06:00
|
|
|
|
|
|
|
0
|
2015-11-02 07:46:39 -06:00
|
|
|
}
|