2019-09-02 17:28:37 -04: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 20:38:21 -07:00
| ------------------------------------------------- ^^^^^^^^^^^^^^^^^^^ cannot coerce intrinsics to function pointers
| |
2019-11-18 21:00:24 -08:00
| expected due to this
2019-09-02 17:28:37 -04:00
|
2019-11-13 14:16:56 -08:00
= note: expected fn pointer `unsafe extern "rust-intrinsic" fn(isize) -> usize`
2020-09-02 10:40:56 +03:00
found fn item `unsafe extern "rust-intrinsic" fn(_) -> _ {transmute::<_, _>}`
2019-09-02 17:28:37 -04:00
2020-09-02 10:40:56 +03:00
error[E0606]: casting `unsafe extern "rust-intrinsic" fn(_) -> _ {transmute::<_, _>}` as `unsafe extern "rust-intrinsic" fn(isize) -> usize` is invalid
2019-09-02 17:28:37 -04:00
--> $DIR/reify-intrinsic.rs:11:13
|
LL | let _ = std::mem::transmute as unsafe extern "rust-intrinsic" fn(isize) -> usize;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
2021-04-21 00:00:00 +00:00
error[E0308]: cannot coerce intrinsics to function pointers
--> $DIR/reify-intrinsic.rs:18:9
|
2021-06-04 15:37:16 -04:00
LL | std::intrinsics::unlikely,
| ^^^^^^^^^^^^^^^^^^^^^^^^^ cannot coerce intrinsics to function pointers
2021-04-21 00:00:00 +00:00
|
2022-04-17 15:00:32 -04:00
= note: expected fn item `extern "rust-intrinsic" fn(_) -> _ {likely}`
found fn item `extern "rust-intrinsic" fn(_) -> _ {unlikely}`
2022-08-04 03:05:57 +00: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-21 00:00:00 +00:00
error: aborting due to 3 previous errors
2019-09-02 17:28:37 -04:00
Some errors have detailed explanations: E0308, E0606.
For more information about an error, try `rustc --explain E0308`.