2019-09-02 21:28:37 +00: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-12 03:38:21 +00:00
|
|
|
| ------------------------------------------------- ^^^^^^^^^^^^^^^^^^^ cannot coerce intrinsics to function pointers
|
|
|
|
| |
|
2019-11-19 05:00:24 +00:00
|
|
|
| expected due to this
|
2019-09-02 21:28:37 +00:00
|
|
|
|
|
2019-11-13 22:16:56 +00:00
|
|
|
= note: expected fn pointer `unsafe extern "rust-intrinsic" fn(isize) -> usize`
|
2020-09-02 07:40:56 +00:00
|
|
|
found fn item `unsafe extern "rust-intrinsic" fn(_) -> _ {transmute::<_, _>}`
|
2019-09-02 21:28:37 +00:00
|
|
|
|
2020-09-02 07:40:56 +00:00
|
|
|
error[E0606]: casting `unsafe extern "rust-intrinsic" fn(_) -> _ {transmute::<_, _>}` as `unsafe extern "rust-intrinsic" fn(isize) -> usize` is invalid
|
2019-09-02 21:28:37 +00: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 19:37:16 +00:00
|
|
|
LL | std::intrinsics::unlikely,
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^ cannot coerce intrinsics to function pointers
|
2021-04-21 00:00:00 +00:00
|
|
|
|
|
2022-04-17 19:00:32 +00:00
|
|
|
= note: expected fn item `extern "rust-intrinsic" fn(_) -> _ {likely}`
|
|
|
|
found fn item `extern "rust-intrinsic" fn(_) -> _ {unlikely}`
|
2022-12-11 07:49:07 +00:00
|
|
|
= note: different fn items have unique types, even if their signatures are the same
|
2021-04-21 00:00:00 +00:00
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
2019-09-02 21:28:37 +00:00
|
|
|
|
|
|
|
Some errors have detailed explanations: E0308, E0606.
|
|
|
|
For more information about an error, try `rustc --explain E0308`.
|