2019-10-18 16:47:54 -05:00
|
|
|
// ignore-wasm32-bare compiled with panic=abort by default
|
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());
|
|
|
|
}
|