warning: skipping const checks --> $DIR/drop.rs:16:1 | LL | / static TEST_BAD: () = { LL | | let _v: Vec = Vec::new(); LL | | }; | |__^ error[E0080]: could not evaluate static initializer --> $SRC_DIR/libcore/ptr/mod.rs:LL:COL | LL | / pub unsafe fn drop_in_place(to_drop: *mut T) { LL | | // Code here does not matter - this is replaced by the LL | | // real drop glue by the compiler. LL | | drop_in_place(to_drop) LL | | } | | ^ | | | | |_calling non-const function ` as std::ops::Drop>::drop` | inside `std::intrinsics::drop_in_place::> - shim(Some(std::vec::Vec))` at $SRC_DIR/libcore/ptr/mod.rs:LL:COL | ::: $DIR/drop.rs:18:1 | LL | }; | - inside `TEST_BAD` at $DIR/drop.rs:18:1 error: aborting due to previous error; 1 warning emitted For more information about this error, try `rustc --explain E0080`.