rust/tests/ui/consts/miri_unleashed/box.stderr

33 lines
862 B
Plaintext
Raw Normal View History

error[E0080]: could not evaluate static initializer
2022-09-21 06:05:20 -05:00
--> $DIR/box.rs:9:11
|
LL | &mut *(box 0)
2021-09-16 17:04:02 -05:00
| ^^^^^^^ calling non-const function `alloc::alloc::exchange_malloc`
2020-05-03 07:23:08 -05:00
warning: skipping const checks
|
help: skipping check that does not even have a feature gate
2022-09-21 06:05:20 -05:00
--> $DIR/box.rs:9:11
2020-05-03 07:23:08 -05:00
|
LL | &mut *(box 0)
| ^^^^^^^
help: skipping check for `const_mut_refs` feature
2022-09-21 06:05:20 -05:00
--> $DIR/box.rs:9:16
2020-05-03 07:23:08 -05:00
|
LL | &mut *(box 0)
| ^
help: skipping check for `const_mut_refs` feature
2022-09-21 06:05:20 -05:00
--> $DIR/box.rs:9:5
2020-05-03 07:23:08 -05:00
|
LL | &mut *(box 0)
| ^^^^^^^^^^^^^
help: skipping check that does not even have a feature gate
2022-09-21 06:05:20 -05:00
--> $DIR/box.rs:9:5
2020-05-03 07:23:08 -05:00
|
LL | &mut *(box 0)
| ^^^^^^^^^^^^^
2020-04-29 02:53:22 -05:00
error: aborting due to previous error; 1 warning emitted
For more information about this error, try `rustc --explain E0080`.