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.

8 lines
197 B
Rust
Raw Normal View History

// compile-flags: -Zmir-opt-level=0
// EMIT_MIR core.ptr-drop_in_place.[String].AddMovesForPackedDrops.before.mir
2019-03-30 17:18:54 +00:00
fn main() {
let _fn = std::ptr::drop_in_place::<[String]> as unsafe fn(_);
2019-03-30 17:18:54 +00:00
}