mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
50 lines
1.1 KiB
Rust
50 lines
1.1 KiB
Rust
//
|
|
// compile-flags:-Zprint-mono-items=eager
|
|
// compile-flags:-Zinline-in-all-cgus
|
|
|
|
#![deny(dead_code)]
|
|
#![feature(start)]
|
|
|
|
//~ MONO_ITEM fn std::ptr::drop_in_place::<StructWithDrop> - shim(Some(StructWithDrop)) @@ non_generic_drop_glue-cgu.0[Internal]
|
|
struct StructWithDrop {
|
|
x: i32
|
|
}
|
|
|
|
impl Drop for StructWithDrop {
|
|
//~ MONO_ITEM fn <StructWithDrop as std::ops::Drop>::drop
|
|
fn drop(&mut self) {}
|
|
}
|
|
|
|
struct StructNoDrop {
|
|
x: i32
|
|
}
|
|
|
|
//~ MONO_ITEM fn std::ptr::drop_in_place::<EnumWithDrop> - shim(Some(EnumWithDrop)) @@ non_generic_drop_glue-cgu.0[Internal]
|
|
enum EnumWithDrop {
|
|
A(i32)
|
|
}
|
|
|
|
impl Drop for EnumWithDrop {
|
|
//~ MONO_ITEM fn <EnumWithDrop as std::ops::Drop>::drop
|
|
fn drop(&mut self) {}
|
|
}
|
|
|
|
enum EnumNoDrop {
|
|
A(i32)
|
|
}
|
|
|
|
//~ MONO_ITEM fn start
|
|
#[start]
|
|
fn start(_: isize, _: *const *const u8) -> isize {
|
|
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
|
|
};
|
|
|
|
0
|
|
}
|