2023-10-16 17:36:39 +00:00
|
|
|
// skip-filecheck
|
2024-01-30 22:28:28 -05: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-04 22:35:47 -07:00
|
|
|
|
2020-09-02 10:40:56 +03: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 06:46:51 -04:00
|
|
|
let _fn = std::ptr::drop_in_place::<[String]> as unsafe fn(_);
|
2019-03-30 17:18:54 +00:00
|
|
|
}
|