Skip to content

Commit 1f11373

Browse files
committed
add testcase for 34123
Fixes rust-lang#34123
1 parent 771cc7f commit 1f11373

File tree

2 files changed

+27
-0
lines changed

2 files changed

+27
-0
lines changed

src/test/ui/intrinsic_ice.rs

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
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+
}

src/test/ui/intrinsic_ice.stderr

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
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`.

0 commit comments

Comments
 (0)