rust/tests/ui/consts/miri_unleashed/drop.rs

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

18 lines
435 B
Rust
Raw Normal View History

2019-12-24 05:20:36 -06:00
// compile-flags: -Zunleash-the-miri-inside-of-you
// error-pattern: calling non-const function `<Vec<i32> as Drop>::drop`
2019-12-24 05:20:36 -06:00
use std::mem::ManuallyDrop;
fn main() {}
static TEST_OK: () = {
let v: Vec<i32> = Vec::new();
let _v = ManuallyDrop::new(v);
};
// Make sure we catch executing bad drop functions.
2019-12-25 04:18:39 -06:00
// The actual error is tested by the error-pattern above.
2020-05-03 07:23:08 -05:00
static TEST_BAD: () = {
2019-12-24 05:20:36 -06:00
let _v: Vec<i32> = Vec::new();
};