2025-02-28 00:30:45 +00:00
|
|
|
error[E0369]: cannot add `[{integer}; 1680]` to `[{integer}; 1680]`
|
|
|
|
|
--> $DIR/long-span.rs:7:5056
|
|
|
|
|
|
|
|
|
|
|
LL | ... = [0, 0, 0...0] + [0, 0, 0...0];
|
|
|
|
|
| --------...-- ^ --------...-- [{integer}; 1680]
|
|
|
|
|
| |
|
|
|
|
|
| [{integer}; 1680]
|
|
|
|
|
|
2025-02-27 21:11:22 +00:00
|
|
|
error[E0308]: mismatched types
|
2025-02-28 00:30:45 +00:00
|
|
|
--> $DIR/long-span.rs:9:15
|
2025-02-27 21:11:22 +00:00
|
|
|
|
|
2025-02-27 21:12:58 +00:00
|
|
|
LL | ... = [0, 0, 0...0];
|
2025-02-27 21:11:22 +00:00
|
|
|
| ^^^^^^^^...^^ expected `u8`, found `[{integer}; 1680]`
|
|
|
|
|
|
2025-02-28 00:30:45 +00:00
|
|
|
error: aborting due to 2 previous errors
|
2025-02-27 21:11:22 +00:00
|
|
|
|
2025-02-28 00:30:45 +00:00
|
|
|
Some errors have detailed explanations: E0308, E0369.
|
|
|
|
|
For more information about an error, try `rustc --explain E0308`.
|