]> git.lizzy.rs Git - rust.git/blob - src/test/ui/consts/miri_unleashed/drop.stderr
adjust ui tests
[rust.git] / src / test / ui / consts / miri_unleashed / drop.stderr
1 warning: skipping const checks
2   --> $DIR/drop.rs:21:9
3    |
4 LL |     let _v: Vec<i32> = Vec::new();
5    |         ^^
6
7 error[E0080]: could not evaluate static initializer
8   --> $SRC_DIR/libcore/ptr/mod.rs:LL:COL
9    |
10 LL | / pub unsafe fn drop_in_place<T: ?Sized>(to_drop: *mut T) {
11 LL | |     // Code here does not matter - this is replaced by the
12 LL | |     // real drop glue by the compiler.
13 LL | |     drop_in_place(to_drop)
14 LL | | }
15    | |_^ calling non-const function `<std::vec::Vec<i32> as std::ops::Drop>::drop`
16    | 
17   ::: $DIR/drop.rs:23:1
18    |
19 LL |   };
20    |   - inside call to `std::intrinsics::drop_in_place::<std::vec::Vec<i32>> - shim(Some(std::vec::Vec<i32>))` at $DIR/drop.rs:23:1
21
22 error: aborting due to previous error
23
24 For more information about this error, try `rustc --explain E0080`.