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