mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
use error-pattern
This commit is contained in:
parent
ffb6aa1288
commit
40b8b7c338
@ -1,5 +1,6 @@
|
||||
// compile-flags: -Zunleash-the-miri-inside-of-you
|
||||
// ignore-x86 FIXME: missing sysroot spans (#53081)
|
||||
// error-pattern: calling non-const function `<std::vec::Vec<i32> as std::ops::Drop>::drop`
|
||||
#![deny(const_err)]
|
||||
|
||||
use std::mem::ManuallyDrop;
|
||||
@ -12,8 +13,7 @@ static TEST_OK: () = {
|
||||
};
|
||||
|
||||
// Make sure we catch executing bad drop functions.
|
||||
// The actual error is located in `real_drop_in_place` so we can't capture it with the
|
||||
// error annotations here.
|
||||
// The actual error is tested by the error-pattern above.
|
||||
static TEST_BAD: () = {
|
||||
let _v: Vec<i32> = Vec::new();
|
||||
//~^ WARN skipping const check
|
||||
|
Loading…
Reference in New Issue
Block a user