2023-10-16 17:36:39 +00:00
|
|
|
// skip-filecheck
|
2024-01-31 03:28:28 +00:00
|
|
|
//@ compile-flags: -Zmir-opt-level=0 -Clink-dead-code
|
|
|
|
// mir-opt tests are always built as rlibs so that they seamlessly cross-compile,
|
|
|
|
// so this test only produces MIR for the drop_in_place we're looking for
|
|
|
|
// if we use -Clink-dead-code.
|
2022-09-05 05:35:47 +00:00
|
|
|
|
2020-09-02 07:40:56 +00:00
|
|
|
// EMIT_MIR core.ptr-drop_in_place.[String].AddMovesForPackedDrops.before.mir
|
2019-03-30 17:18:54 +00:00
|
|
|
fn main() {
|
2019-10-17 10:46:51 +00:00
|
|
|
let _fn = std::ptr::drop_in_place::<[String]> as unsafe fn(_);
|
2019-03-30 17:18:54 +00:00
|
|
|
}
|