2021-09-19 16:57:19 +00:00
|
|
|
//@ incremental
|
2024-12-05 17:51:19 +00:00
|
|
|
//@ compile-flags: -Zprint-mono-items=lazy -Copt-level=0
|
2016-03-24 15:40:49 +00:00
|
|
|
|
2019-12-15 19:53:07 +00:00
|
|
|
#![crate_type = "rlib"]
|
2016-03-24 15:40:49 +00:00
|
|
|
|
2024-12-05 17:51:19 +00:00
|
|
|
// This test checks that drop glue is generated for types defined in this crate, and that all drop
|
|
|
|
// glue is put in the fallback CGU.
|
|
|
|
// This is rather similar to extern-drop-glue.rs.
|
|
|
|
|
2021-02-14 21:42:38 +00:00
|
|
|
//~ MONO_ITEM fn std::ptr::drop_in_place::<Struct> - shim(Some(Struct)) @@ local_drop_glue-fallback.cgu[External]
|
2024-12-05 17:51:19 +00:00
|
|
|
pub struct Struct {
|
2019-12-15 19:53:07 +00:00
|
|
|
_a: u32,
|
2016-03-24 15:40:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl Drop for Struct {
|
2020-08-28 13:31:03 +00:00
|
|
|
//~ MONO_ITEM fn <Struct as std::ops::Drop>::drop @@ local_drop_glue-fallback.cgu[External]
|
2016-03-24 15:40:49 +00:00
|
|
|
fn drop(&mut self) {}
|
|
|
|
}
|
|
|
|
|
2021-02-14 21:42:38 +00:00
|
|
|
//~ MONO_ITEM fn std::ptr::drop_in_place::<Outer> - shim(Some(Outer)) @@ local_drop_glue-fallback.cgu[External]
|
2024-12-05 17:51:19 +00:00
|
|
|
pub struct Outer {
|
2019-12-15 19:53:07 +00:00
|
|
|
_a: Struct,
|
2016-03-24 15:40:49 +00:00
|
|
|
}
|
|
|
|
|
2020-08-28 13:31:03 +00:00
|
|
|
//~ MONO_ITEM fn user @@ local_drop_glue[External]
|
2019-12-15 19:53:07 +00:00
|
|
|
pub fn user() {
|
|
|
|
let _ = Outer { _a: Struct { _a: 0 } };
|
2016-03-24 15:40:49 +00:00
|
|
|
}
|
|
|
|
|
2019-12-15 19:53:07 +00:00
|
|
|
pub mod mod1 {
|
2016-03-24 15:40:49 +00:00
|
|
|
use super::Struct;
|
|
|
|
|
2021-02-14 21:42:38 +00:00
|
|
|
//~ MONO_ITEM fn std::ptr::drop_in_place::<mod1::Struct2> - shim(Some(mod1::Struct2)) @@ local_drop_glue-fallback.cgu[External]
|
2016-03-24 15:40:49 +00:00
|
|
|
struct Struct2 {
|
|
|
|
_a: Struct,
|
2024-12-05 17:51:19 +00:00
|
|
|
//~ MONO_ITEM fn std::ptr::drop_in_place::<(u32, Struct)> - shim(Some((u32, Struct))) @@ local_drop_glue-fallback.cgu[External]
|
2016-03-24 15:40:49 +00:00
|
|
|
_b: (u32, Struct),
|
|
|
|
}
|
|
|
|
|
2020-08-28 13:31:03 +00:00
|
|
|
//~ MONO_ITEM fn mod1::user @@ local_drop_glue-mod1[External]
|
2019-12-15 19:53:07 +00:00
|
|
|
pub fn user() {
|
|
|
|
let _ = Struct2 { _a: Struct { _a: 0 }, _b: (0, Struct { _a: 0 }) };
|
2016-03-24 15:40:49 +00:00
|
|
|
}
|
|
|
|
}
|