blob: 2754dd17b9963dfbdffa753af6c19f994e00c6db [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:13: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:15: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`.