2023-02-28 22:58:10 +00:00
|
|
|
// needs-unwind
|
2017-02-26 14:21:08 +00:00
|
|
|
// this tests move up progration, which is not yet implemented
|
|
|
|
|
2023-02-08 21:29:52 +00:00
|
|
|
// EMIT_MIR basic_assignment.main.ElaborateDrops.diff
|
2020-07-27 19:22:43 +00:00
|
|
|
// EMIT_MIR basic_assignment.main.SimplifyCfg-initial.after.mir
|
2020-03-11 10:49:00 +00:00
|
|
|
|
2018-09-05 20:23:45 +00:00
|
|
|
// Check codegen for assignments (`a = b`) where the left-hand-side is
|
|
|
|
// not yet initialized. Assignments tend to be absent in simple code,
|
|
|
|
// so subtle breakage in them can leave a quite hard-to-find trail of
|
|
|
|
// destruction.
|
2017-02-26 14:21:08 +00:00
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let nodrop_x = false;
|
|
|
|
let nodrop_y;
|
|
|
|
|
2018-09-05 20:23:45 +00:00
|
|
|
// Since boolean does not require drop, this can be a simple
|
|
|
|
// assignment:
|
2017-02-26 14:21:08 +00:00
|
|
|
nodrop_y = nodrop_x;
|
|
|
|
|
2020-03-11 10:49:00 +00:00
|
|
|
let drop_x: Option<Box<u32>> = None;
|
2017-02-26 14:21:08 +00:00
|
|
|
let drop_y;
|
|
|
|
|
2018-09-05 20:23:45 +00:00
|
|
|
// Since the type of `drop_y` has drop, we generate a `replace`
|
|
|
|
// terminator:
|
2017-02-26 14:21:08 +00:00
|
|
|
drop_y = drop_x;
|
|
|
|
}
|