summaryrefslogtreecommitdiffstats
path: root/tests/ui/simd/intrinsic/generic-elements.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/simd/intrinsic/generic-elements.rs')
-rw-r--r--tests/ui/simd/intrinsic/generic-elements.rs28
1 files changed, 27 insertions, 1 deletions
diff --git a/tests/ui/simd/intrinsic/generic-elements.rs b/tests/ui/simd/intrinsic/generic-elements.rs
index 0ff2203ec..6ba93e46f 100644
--- a/tests/ui/simd/intrinsic/generic-elements.rs
+++ b/tests/ui/simd/intrinsic/generic-elements.rs
@@ -1,6 +1,7 @@
// build-fail
-#![feature(repr_simd, platform_intrinsics, rustc_attrs)]
+#![feature(repr_simd, platform_intrinsics, rustc_attrs, adt_const_params)]
+#![allow(incomplete_features)]
#[repr(simd)]
#[derive(Copy, Clone)]
@@ -35,6 +36,7 @@ extern "platform-intrinsic" {
fn simd_extract<T, E>(x: T, idx: u32) -> E;
fn simd_shuffle<T, I, U>(x: T, y: T, idx: I) -> U;
+ fn simd_shuffle_generic<T, U, const IDX: &'static [u32]>(x: T, y: T) -> U;
}
fn main() {
@@ -71,5 +73,29 @@ fn main() {
//~^ ERROR expected return type of length 4, found `i32x8` with length 8
simd_shuffle::<_, _, i32x2>(x, x, IDX8);
//~^ ERROR expected return type of length 8, found `i32x2` with length 2
+
+ const I2: &[u32] = &[0; 2];
+ simd_shuffle_generic::<i32, i32, I2>(0, 0);
+ //~^ ERROR expected SIMD input type, found non-SIMD `i32`
+ const I4: &[u32] = &[0; 4];
+ simd_shuffle_generic::<i32, i32, I4>(0, 0);
+ //~^ ERROR expected SIMD input type, found non-SIMD `i32`
+ const I8: &[u32] = &[0; 8];
+ simd_shuffle_generic::<i32, i32, I8>(0, 0);
+ //~^ ERROR expected SIMD input type, found non-SIMD `i32`
+
+ simd_shuffle_generic::<_, f32x2, I2>(x, x);
+//~^ ERROR element type `i32` (element of input `i32x4`), found `f32x2` with element type `f32`
+ simd_shuffle_generic::<_, f32x4, I4>(x, x);
+//~^ ERROR element type `i32` (element of input `i32x4`), found `f32x4` with element type `f32`
+ simd_shuffle_generic::<_, f32x8, I8>(x, x);
+//~^ ERROR element type `i32` (element of input `i32x4`), found `f32x8` with element type `f32`
+
+ simd_shuffle_generic::<_, i32x8, I2>(x, x);
+ //~^ ERROR expected return type of length 2, found `i32x8` with length 8
+ simd_shuffle_generic::<_, i32x8, I4>(x, x);
+ //~^ ERROR expected return type of length 4, found `i32x8` with length 8
+ simd_shuffle_generic::<_, i32x2, I8>(x, x);
+ //~^ ERROR expected return type of length 8, found `i32x2` with length 2
}
}