2016-03-24 11:40:49 -04:00
|
|
|
// Copyright 2016 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
|
|
|
// ignore-tidy-linelength
|
2016-05-01 13:53:39 -04:00
|
|
|
// We specify -Z incremental here because we want to test the partitioning for
|
|
|
|
// incremental compilation
|
|
|
|
// compile-flags:-Zprint-trans-items=lazy -Zincremental=tmp/partitioning-tests/local-drop-glue
|
2017-10-06 14:59:33 -07:00
|
|
|
// compile-flags:-Zinline-in-all-cgus
|
2016-03-24 11:40:49 -04:00
|
|
|
|
|
|
|
#![allow(dead_code)]
|
2017-10-27 14:31:18 +02:00
|
|
|
#![crate_type="rlib"]
|
2016-03-24 11:40:49 -04:00
|
|
|
|
2017-03-14 01:08:21 +02:00
|
|
|
//~ TRANS_ITEM fn core::ptr[0]::drop_in_place[0]<local_drop_glue::Struct[0]> @@ local_drop_glue[Internal] local_drop_glue-mod1[Internal]
|
2016-03-24 11:40:49 -04:00
|
|
|
struct Struct {
|
|
|
|
_a: u32
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Drop for Struct {
|
2016-05-19 12:35:36 -04:00
|
|
|
//~ TRANS_ITEM fn local_drop_glue::{{impl}}[0]::drop[0] @@ local_drop_glue[External]
|
2016-03-24 11:40:49 -04:00
|
|
|
fn drop(&mut self) {}
|
|
|
|
}
|
|
|
|
|
2017-03-14 01:08:21 +02:00
|
|
|
//~ TRANS_ITEM fn core::ptr[0]::drop_in_place[0]<local_drop_glue::Outer[0]> @@ local_drop_glue[Internal]
|
2016-03-24 11:40:49 -04:00
|
|
|
struct Outer {
|
|
|
|
_a: Struct
|
|
|
|
}
|
|
|
|
|
2017-10-27 14:31:18 +02:00
|
|
|
//~ TRANS_ITEM fn local_drop_glue::user[0] @@ local_drop_glue[External]
|
|
|
|
pub fn user()
|
2016-03-24 11:40:49 -04:00
|
|
|
{
|
|
|
|
let _ = Outer {
|
|
|
|
_a: Struct {
|
|
|
|
_a: 0
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2017-10-27 14:31:18 +02:00
|
|
|
pub mod mod1
|
2016-03-24 11:40:49 -04:00
|
|
|
{
|
|
|
|
use super::Struct;
|
|
|
|
|
2017-03-14 01:08:21 +02:00
|
|
|
//~ TRANS_ITEM fn core::ptr[0]::drop_in_place[0]<local_drop_glue::mod1[0]::Struct2[0]> @@ local_drop_glue-mod1[Internal]
|
2016-03-24 11:40:49 -04:00
|
|
|
struct Struct2 {
|
|
|
|
_a: Struct,
|
2017-03-14 01:08:21 +02:00
|
|
|
//~ TRANS_ITEM fn core::ptr[0]::drop_in_place[0]<(u32, local_drop_glue::Struct[0])> @@ local_drop_glue-mod1[Internal]
|
2016-03-24 11:40:49 -04:00
|
|
|
_b: (u32, Struct),
|
|
|
|
}
|
|
|
|
|
2017-10-27 14:31:18 +02:00
|
|
|
//~ TRANS_ITEM fn local_drop_glue::mod1[0]::user[0] @@ local_drop_glue-mod1[External]
|
|
|
|
pub fn user()
|
2016-03-24 11:40:49 -04:00
|
|
|
{
|
|
|
|
let _ = Struct2 {
|
|
|
|
_a: Struct { _a: 0 },
|
|
|
|
_b: (0, Struct { _a: 0 }),
|
|
|
|
};
|
|
|
|
}
|
|
|
|
}
|