blob: 0692aa7275b3f7bba57a6faf4a0ff443993a6292 [file] [log] [blame]
error[E0443]: intrinsic return value has wrong type: found `B`, expected `A` which was used for this vector type previously in this signature
--> $DIR/simd-intrinsic-single-nominal-type.rs:23:5
|
LL | fn x86_mm_adds_epi16(x: A, y: A) -> B;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error[E0443]: intrinsic argument 2 has wrong type: found `B`, expected `A` which was used for this vector type previously in this signature
--> $DIR/simd-intrinsic-single-nominal-type.rs:25:5
|
LL | fn x86_mm_subs_epi16(x: A, y: B) -> A;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0443`.