2019-08-29 19:01:04 -05:00
|
|
|
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-01-10 20:48:52 -06:00
|
|
|
|
|
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
|
2020-01-10 20:48:52 -06:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
2020-06-25 19:43:48 -05:00
|
|
|
For more information about this error, try `rustc --explain E0723`.
|