rust/tests/mir-opt/slice_drop_shim.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
419 B
Rust
Raw Normal View History

// skip-filecheck
//@ 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.
// EMIT_MIR core.ptr-drop_in_place.[String].AddMovesForPackedDrops.before.mir
2019-03-31 01:18:54 +08:00
fn main() {
let _fn = std::ptr::drop_in_place::<[String]> as unsafe fn(_);
2019-03-31 01:18:54 +08:00
}