2019-10-18 21:47:54 +00:00
|
|
|
// ignore-wasm32-bare compiled with panic=abort by default
|
2017-11-26 18:39:16 +00:00
|
|
|
|
2017-04-06 22:00:53 +00:00
|
|
|
// check that we don't emit multiple drop flags when they are not needed.
|
|
|
|
|
2020-04-02 21:09:01 +00:00
|
|
|
|
2020-07-27 19:22:43 +00:00
|
|
|
// EMIT_MIR issue_41110.main.ElaborateDrops.after.mir
|
2017-04-06 22:00:53 +00:00
|
|
|
fn main() {
|
|
|
|
let x = S.other(S.id());
|
|
|
|
}
|
|
|
|
|
2017-11-06 09:35:52 +00:00
|
|
|
// no_mangle to make sure this gets instantiated even in an executable.
|
2017-10-30 17:20:07 +00:00
|
|
|
#[no_mangle]
|
2020-07-27 19:22:43 +00:00
|
|
|
// EMIT_MIR issue_41110.test.ElaborateDrops.after.mir
|
2017-11-06 09:35:52 +00:00
|
|
|
pub fn test() {
|
2017-04-06 22:00:53 +00: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) {}
|
|
|
|
}
|