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