mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-23 07:14:28 +00:00
47 lines
2.1 KiB
Rust
47 lines
2.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::<Root> - shim(Some(Root)) @@ transitive_drop_glue-cgu.0[Internal]
|
|
struct Root(#[allow(unused_tuple_struct_fields)] Intermediate);
|
|
//~ MONO_ITEM fn std::ptr::drop_in_place::<Intermediate> - shim(Some(Intermediate)) @@ transitive_drop_glue-cgu.0[Internal]
|
|
struct Intermediate(#[allow(unused_tuple_struct_fields)] Leaf);
|
|
//~ MONO_ITEM fn std::ptr::drop_in_place::<Leaf> - shim(Some(Leaf)) @@ transitive_drop_glue-cgu.0[Internal]
|
|
struct Leaf;
|
|
|
|
impl Drop for Leaf {
|
|
//~ MONO_ITEM fn <Leaf as std::ops::Drop>::drop
|
|
fn drop(&mut self) {}
|
|
}
|
|
|
|
struct RootGen<T>(#[allow(unused_tuple_struct_fields)] IntermediateGen<T>);
|
|
struct IntermediateGen<T>(#[allow(unused_tuple_struct_fields)] LeafGen<T>);
|
|
struct LeafGen<T>(#[allow(unused_tuple_struct_fields)] T);
|
|
|
|
impl<T> Drop for LeafGen<T> {
|
|
fn drop(&mut self) {}
|
|
}
|
|
|
|
//~ MONO_ITEM fn start
|
|
#[start]
|
|
fn start(_: isize, _: *const *const u8) -> isize {
|
|
let _ = Root(Intermediate(Leaf));
|
|
|
|
//~ MONO_ITEM fn std::ptr::drop_in_place::<RootGen<u32>> - shim(Some(RootGen<u32>)) @@ transitive_drop_glue-cgu.0[Internal]
|
|
//~ MONO_ITEM fn std::ptr::drop_in_place::<IntermediateGen<u32>> - shim(Some(IntermediateGen<u32>)) @@ transitive_drop_glue-cgu.0[Internal]
|
|
//~ MONO_ITEM fn std::ptr::drop_in_place::<LeafGen<u32>> - shim(Some(LeafGen<u32>)) @@ transitive_drop_glue-cgu.0[Internal]
|
|
//~ MONO_ITEM fn <LeafGen<u32> as std::ops::Drop>::drop
|
|
let _ = RootGen(IntermediateGen(LeafGen(0u32)));
|
|
|
|
//~ MONO_ITEM fn std::ptr::drop_in_place::<RootGen<i16>> - shim(Some(RootGen<i16>)) @@ transitive_drop_glue-cgu.0[Internal]
|
|
//~ MONO_ITEM fn std::ptr::drop_in_place::<IntermediateGen<i16>> - shim(Some(IntermediateGen<i16>)) @@ transitive_drop_glue-cgu.0[Internal]
|
|
//~ MONO_ITEM fn std::ptr::drop_in_place::<LeafGen<i16>> - shim(Some(LeafGen<i16>)) @@ transitive_drop_glue-cgu.0[Internal]
|
|
//~ MONO_ITEM fn <LeafGen<i16> as std::ops::Drop>::drop
|
|
let _ = RootGen(IntermediateGen(LeafGen(0i16)));
|
|
|
|
0
|
|
}
|