about summary refs log tree commit diff
path: root/tests/ui/error-codes/E0075.stderr
blob: 0a44a2eadebd1855c085404a9bd5f6382f49063b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
error[E0075]: SIMD vector cannot be empty
  --> $DIR/E0075.rs:4:1
   |
LL | struct Bad;
   | ^^^^^^^^^^

error[E0075]: SIMD vector cannot have multiple fields
  --> $DIR/E0075.rs:7:1
   |
LL | struct AlsoBad([i32; 1], [i32; 1]);
   | ^^^^^^^^^^^^^^           -------- excess field

error: aborting due to 2 previous errors

For more information about this error, try `rustc --explain E0075`.