rust/src/test/ui/consts/miri_unleashed/drop.stderr

32 lines
962 B
Plaintext
Raw Normal View History

2019-12-24 05:20:36 -06:00
error[E0080]: could not evaluate static initializer
2020-06-11 21:31:49 -05:00
--> $SRC_DIR/core/src/ptr/mod.rs:LL:COL
2019-12-24 05:20:36 -06:00
|
2020-01-18 05:24:54 -06:00
LL | / pub unsafe fn drop_in_place<T: ?Sized>(to_drop: *mut T) {
2019-12-24 05:20:36 -06:00
LL | | // Code here does not matter - this is replaced by the
LL | | // real drop glue by the compiler.
2020-06-30 13:14:54 -05:00
LL | |
LL | | // SAFETY: see comment above
LL | | unsafe { drop_in_place(to_drop) }
2019-12-24 05:20:36 -06:00
LL | | }
| | ^
| | |
| |_calling non-const function `<Vec<i32> as Drop>::drop`
| inside `drop_in_place::<Vec<i32>> - shim(Some(Vec<i32>))` at $SRC_DIR/core/src/ptr/mod.rs:LL:COL
2019-12-24 05:20:36 -06:00
|
2020-04-29 02:53:22 -05:00
::: $DIR/drop.rs:18:1
2019-12-24 05:20:36 -06:00
|
LL | };
2020-04-29 02:53:22 -05:00
| - inside `TEST_BAD` at $DIR/drop.rs:18:1
2019-12-24 05:20:36 -06:00
2020-05-03 07:23:08 -05:00
warning: skipping const checks
|
help: skipping check that does not even have a feature gate
--> $DIR/drop.rs:17:9
|
LL | let _v: Vec<i32> = Vec::new();
| ^^
error: aborting due to previous error; 1 warning emitted
2019-12-24 05:20:36 -06:00
For more information about this error, try `rustc --explain E0080`.