2019-10-18 16:47:54 -05:00
|
|
|
// ignore-wasm32-bare compiled with panic=abort by default
|
2017-11-26 12:39:16 -06:00
|
|
|
|
2017-04-06 17:00:53 -05:00
|
|
|
// check that we don't emit multiple drop flags when they are not needed.
|
|
|
|
|
2020-04-02 16:09:01 -05:00
|
|
|
|
2023-02-22 18:00:00 -06:00
|
|
|
// EMIT_MIR issue_41110.main.ElaborateDrops.diff
|
2017-04-06 17:00:53 -05:00
|
|
|
fn main() {
|
|
|
|
let x = S.other(S.id());
|
|
|
|
}
|
|
|
|
|
2017-11-06 03:35:52 -06:00
|
|
|
// no_mangle to make sure this gets instantiated even in an executable.
|
2017-10-30 12:20:07 -05:00
|
|
|
#[no_mangle]
|
2023-02-22 18:00:00 -06:00
|
|
|
// EMIT_MIR issue_41110.test.ElaborateDrops.diff
|
2017-11-06 03:35:52 -06:00
|
|
|
pub fn test() {
|
2017-04-06 17:00:53 -05:00
|
|
|
let u = S;
|
|
|
|
let mut v = S;
|
|
|
|
drop(v);
|
|
|
|
v = u;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct S;
|
|
|
|
impl Drop for S {
|
|
|
|
fn drop(&mut self) {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl S {
|
|
|
|
fn id(self) -> Self { self }
|
|
|
|
fn other(self, s: Self) {}
|
|
|
|
}
|