Skip to content
This repository was archived by the owner on May 23, 2024. It is now read-only.

Commit 64bad42

Browse files
authored
Add ICE 77735 (#503)
* Add ICE 77735 * formatting fix
1 parent e9cc13a commit 64bad42

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

ices/77735.rs

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
#![feature(platform_intrinsics)]
2+
#![feature(staged_api)]
3+
struct f32x3();
4+
extern "platform-intrinsic" {
5+
#[rustc_const_stable(feature = "foo", since = "1.3.37")]
6+
fn simd_extract<T, U>(x: T, idx: u32) -> U;
7+
}
8+
const Y0: i8 = unsafe { simd_extract(f32x3, 0) };
9+
10+
fn main() {}

0 commit comments

Comments
 (0)