33 lines
886 B
Plaintext
Raw Normal View History

error[E0080]: could not evaluate static initializer
--> $DIR/box.rs:10:11
|
LL | &mut *(box 0)
| ^^^^^^^ "heap allocations via `box` keyword" needs an rfc before being allowed inside constants
2020-05-03 14:23:08 +02:00
warning: skipping const checks
|
help: skipping check that does not even have a feature gate
--> $DIR/box.rs:10:11
|
LL | &mut *(box 0)
| ^^^^^^^
help: skipping check for `const_mut_refs` feature
--> $DIR/box.rs:10:16
|
LL | &mut *(box 0)
| ^
help: skipping check for `const_mut_refs` feature
--> $DIR/box.rs:10:5
|
LL | &mut *(box 0)
| ^^^^^^^^^^^^^
help: skipping check for `const_mut_refs` feature
--> $DIR/box.rs:10:5
|
LL | &mut *(box 0)
| ^^^^^^^^^^^^^
2020-04-29 09:53:22 +02:00
error: aborting due to previous error; 1 warning emitted
For more information about this error, try `rustc --explain E0080`.