2023-10-16 17:36:39 +00:00
|
|
|
// skip-filecheck
|
2023-06-08 07:18:34 +00:00
|
|
|
// EMIT_MIR_FOR_EACH_PANIC_STRATEGY
|
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
|
|
|
|
2023-02-23 00:00:00 +00:00
|
|
|
// EMIT_MIR issue_41110.main.ElaborateDrops.diff
|
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]
|
2023-02-23 00:00:00 +00:00
|
|
|
// EMIT_MIR issue_41110.test.ElaborateDrops.diff
|
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) {}
|
|
|
|
}
|