2020-06-25 17:43:48 -07:00
|
|
|
error[E0723]: can only call other `const fn` within a `const fn`, but `const std::intrinsics::transmute::<u32, i32>` is not stable as `const fn`
|
|
|
|
--> $DIR/internal-unstable-const.rs:11:14
|
2020-01-10 18:48:52 -08:00
|
|
|
|
|
2020-06-25 17:43:48 -07: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 18:48:52 -08:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
2020-06-25 17:43:48 -07:00
|
|
|
For more information about this error, try `rustc --explain E0723`.
|