0
0
mirror of https://github.com/rust-lang/rust.git synced 2024-12-01 04:21:19 +01:00
rust/tests/ui/simd/monomorphize-heterogeneous.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

17 lines
539 B
Plaintext
Raw Permalink Normal View History

2024-08-22 10:28:20 +02:00
error[E0076]: SIMD vector's only field must be an array
2023-04-08 23:14:57 +02:00
--> $DIR/monomorphize-heterogeneous.rs:4:1
|
LL | struct I64F64(i64, f64);
2024-08-22 10:28:20 +02:00
| ^^^^^^^^^^^^^ --- not an array
2023-04-08 23:14:57 +02:00
2024-08-22 10:28:20 +02:00
error[E0075]: SIMD vector cannot have multiple fields
--> $DIR/monomorphize-heterogeneous.rs:8:1
|
LL | struct I64x4F64x0([i64; 4], [f64; 0]);
| ^^^^^^^^^^^^^^^^^ -------- excess field
error: aborting due to 2 previous errors
2023-04-08 23:14:57 +02:00
2024-08-22 10:28:20 +02:00
Some errors have detailed explanations: E0075, E0076.
For more information about an error, try `rustc --explain E0075`.