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 12:20:36 +01:00
// compile-flags: -Zunleash-the-miri-inside-of-you
// error-pattern: calling non-const function `<Vec<i32> as Drop>::drop`
2019-12-24 12:20:36 +01: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 11:18:39 +01:00
// The actual error is tested by the error-pattern above.
2020-05-03 14:23:08 +02:00
static TEST_BAD: () = {
2019-12-24 12:20:36 +01:00
let _v: Vec<i32> = Vec::new();
};