2023-10-16 12:36:39 -05:00
|
|
|
// skip-filecheck
|
2023-06-08 02:18:34 -05:00
|
|
|
// EMIT_MIR_FOR_EACH_PANIC_STRATEGY
|
2019-09-19 15:12:48 -05:00
|
|
|
|
|
|
|
// Test that after the call to `std::mem::drop` we do not generate a
|
|
|
|
// MIR drop of the argument. (We used to have a `DROP(_2)` in the code
|
|
|
|
// below, as part of bb3.)
|
|
|
|
|
2020-07-27 14:22:43 -05:00
|
|
|
// EMIT_MIR no_spurious_drop_after_call.main.ElaborateDrops.before.mir
|
2019-09-19 15:12:48 -05:00
|
|
|
fn main() {
|
|
|
|
std::mem::drop("".to_string());
|
|
|
|
}
|