]> git.lizzy.rs Git - rust.git/blob - src/test/ui/simd-type.stderr
Rollup merge of #53317 - estebank:abolish-ice, r=oli-obk
[rust.git] / src / test / ui / simd-type.stderr
1 error[E0075]: SIMD vector cannot be empty
2   --> $DIR/simd-type.rs:14:1
3    |
4 LL | struct empty; //~ ERROR SIMD vector cannot be empty
5    | ^^^^^^^^^^^^^
6
7 error[E0076]: SIMD vector should be homogeneous
8   --> $DIR/simd-type.rs:17:1
9    |
10 LL | struct i64f64(i64, f64); //~ ERROR SIMD vector should be homogeneous
11    | ^^^^^^^^^^^^^^^^^^^^^^^^ SIMD elements must have the same type
12
13 error[E0077]: SIMD vector element type should be machine type
14   --> $DIR/simd-type.rs:20:1
15    |
16 LL | struct int4(isize, isize, isize, isize); //~ ERROR SIMD vector element type should be machine type
17    | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
18
19 error: aborting due to 3 previous errors
20
21 Some errors occurred: E0075, E0076, E0077.
22 For more information about an error, try `rustc --explain E0075`.