File tree 2 files changed +27
-0
lines changed
2 files changed +27
-0
lines changed Original file line number Diff line number Diff line change
1
+ // Test for https://github.com/rust-lang/rust/issues/34123
2
+ // ICE: intrinsic .. being reified
3
+
4
+ #![ feature( intrinsics) ]
5
+
6
+ fn main ( ) {
7
+ let transmute = std:: intrinsics:: transmute;
8
+ let assign: unsafe extern "rust-intrinsic" fn ( * const i32 ) -> * mut i32 = transmute;
9
+ }
Original file line number Diff line number Diff line change
1
+ error[E0308]: cannot coerce intrinsics to function pointers
2
+ --> intrinsic_ice.rs:8:77
3
+ |
4
+ L | let assign: unsafe extern "rust-intrinsic" fn(*const i32) -> *mut i32 = transmute;
5
+ | --------------------------------------------------------- ^^^^^^^^^ cannot coerce intrinsics to function pointers
6
+ | |
7
+ | expected due to this
8
+ |
9
+ = note: expected fn pointer `unsafe extern "rust-intrinsic" fn(*const i32) -> *mut i32`
10
+ found fn item `unsafe extern "rust-intrinsic" fn(_) -> _ {transmute::<_, _>}`
11
+ help: use parentheses to call this function
12
+ |
13
+ L | let assign: unsafe extern "rust-intrinsic" fn(*const i32) -> *mut i32 = transmute(...);
14
+ | ^^^^^
15
+
16
+ error: aborting due to previous error
17
+
18
+ For more information about this error, try `rustc --explain E0308`.
You can’t perform that action at this time.
0 commit comments