rust/src/test/ui/internal/internal-unstable-const.stderr

13 lines
496 B
Plaintext
Raw Normal View History

error[E0723]: can only call `transmute` from const items, not `const fn`
2020-06-25 19:43:48 -05:00
--> $DIR/internal-unstable-const.rs:11:14
|
2020-06-25 19:43:48 -05:00
LL | unsafe { std::mem::transmute(4u32) }
| ^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: see issue #57563 <https://github.com/rust-lang/rust/issues/57563> for more information
= help: add `#![feature(const_fn)]` to the crate attributes to enable
error: aborting due to previous error
2020-06-25 19:43:48 -05:00
For more information about this error, try `rustc --explain E0723`.