2020-04-08 13:58:49 -05:00
|
|
|
// ignore-wasm32-bare compiled with panic=abort by default
|
2017-05-15 07:22:59 -05:00
|
|
|
// check that we clear the "ADT master drop flag" even when there are
|
|
|
|
// no fields to be dropped.
|
|
|
|
|
2023-02-22 18:00:00 -06:00
|
|
|
// EMIT_MIR issue_41888.main.ElaborateDrops.diff
|
2017-05-15 07:22:59 -05:00
|
|
|
fn main() {
|
|
|
|
let e;
|
|
|
|
if cond() {
|
|
|
|
e = E::F(K);
|
|
|
|
if let E::F(_k) = e {
|
|
|
|
// older versions of rustc used to not clear the
|
|
|
|
// drop flag for `e` in this path.
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fn cond() -> bool { false }
|
|
|
|
|
|
|
|
struct K;
|
|
|
|
|
|
|
|
enum E {
|
|
|
|
F(K),
|
|
|
|
G(Box<E>)
|
|
|
|
}
|