Skip to content

Commit

Permalink
Add 83837
Browse files Browse the repository at this point in the history
  • Loading branch information
fanninpm committed Apr 9, 2021
1 parent 00453e0 commit 609991b
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions ices/83837.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#![feature(staged_api)]
struct u16x2(u16, u16);
extern "platform-intrinsic" {
#[rustc_const_stable(feature = "foo", since = "1.3.37")]
fn simd_insert(x: T, idx: u32, val: U);
}
fn main() {
const U: u16x2 = u16x2(13, 14);
const { simd_insert(U, 0x1319_8a2e, 42_u16) }
}

0 comments on commit 609991b

Please sign in to comment.