]> git.lizzy.rs Git - rust.git/blob - src/test/ui/simd-type.stderr
Auto merge of #60072 - RalfJung:linked-list, r=shepmaster
[rust.git] / src / test / ui / simd-type.stderr
1 error[E0075]: SIMD vector cannot be empty
2   --> $DIR/simd-type.rs:5:1
3    |
4 LL | struct empty;
5    | ^^^^^^^^^^^^^
6
7 error[E0076]: SIMD vector should be homogeneous
8   --> $DIR/simd-type.rs:8:1
9    |
10 LL | struct i64f64(i64, f64);
11    | ^^^^^^^^^^^^^^^^^^^^^^^^ SIMD elements must have the same type
12
13 error: aborting due to 2 previous errors
14
15 Some errors have detailed explanations: E0075, E0076.
16 For more information about an error, try `rustc --explain E0075`.