Skip to content

Commit

Permalink
Add 82926
Browse files Browse the repository at this point in the history
  • Loading branch information
fanninpm committed Mar 12, 2021
1 parent 3455415 commit 772675c
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions ices/82926.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#![feature(staged_api)]
struct f32x3(f32, f32, f32);
extern "platform-intrinsic" {
#[rustc_const_stable(feature = "foo", since = "1.3.37")]
fn simd_insert<T>(x: T, idx: u32, val: U) -> T;
}
fn main() {
const U: f32x3 = f32x3(13., 14., 15.);
const { simd_insert(U, 1_u32, 42_f32) }
}

0 comments on commit 772675c

Please sign in to comment.