rust/tests/mir-opt/issue_41110.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
587 B
Rust
Raw Normal View History

// ignore-wasm32-bare compiled with panic=abort by default
// 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
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() {
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) {}
}