2019-09-02 16:28:37 -05:00
error[E0308]: cannot coerce intrinsics to function pointers
--> $DIR/reify-intrinsic.rs:6:64
|
LL | let _: unsafe extern "rust-intrinsic" fn(isize) -> usize = std::mem::transmute;
2020-03-11 22:38:21 -05:00
| ------------------------------------------------- ^^^^^^^^^^^^^^^^^^^ cannot coerce intrinsics to function pointers
| |
2019-11-18 23:00:24 -06:00
| expected due to this
2019-09-02 16:28:37 -05:00
|
2019-11-13 16:16:56 -06:00
= note: expected fn pointer `unsafe extern "rust-intrinsic" fn(isize) -> usize`
2020-09-02 02:40:56 -05:00
found fn item `unsafe extern "rust-intrinsic" fn(_) -> _ {transmute::<_, _>}`
2019-09-02 16:28:37 -05:00
2020-09-02 02:40:56 -05:00
error[E0606]: casting `unsafe extern "rust-intrinsic" fn(_) -> _ {transmute::<_, _>}` as `unsafe extern "rust-intrinsic" fn(isize) -> usize` is invalid
2019-09-02 16:28:37 -05:00
--> $DIR/reify-intrinsic.rs:11:13
|
LL | let _ = std::mem::transmute as unsafe extern "rust-intrinsic" fn(isize) -> usize;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2021-04-20 19:00:00 -05:00
error[E0308]: cannot coerce intrinsics to function pointers
--> $DIR/reify-intrinsic.rs:18:9
|
2021-06-04 14:37:16 -05:00
LL | std::intrinsics::unlikely,
| ^^^^^^^^^^^^^^^^^^^^^^^^^ cannot coerce intrinsics to function pointers
2021-04-20 19:00:00 -05:00
|
2022-04-17 14:00:32 -05:00
= note: expected fn item `extern "rust-intrinsic" fn(_) -> _ {likely}`
found fn item `extern "rust-intrinsic" fn(_) -> _ {unlikely}`
2022-08-03 22:05:57 -05:00
= note: different `fn` items always have unique types, even if their signatures are the same
= help: change the expected type to be function pointer `extern "rust-intrinsic" fn(bool) -> bool`
= help: if the expected type is due to type inference, cast the expected `fn` to a function pointer: `likely as extern "rust-intrinsic" fn(bool) -> bool`
2021-04-20 19:00:00 -05:00
error: aborting due to 3 previous errors
2019-09-02 16:28:37 -05:00
Some errors have detailed explanations: E0308, E0606.
For more information about an error, try `rustc --explain E0308`.