mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
41e8d152dc
Co-authored-by: Adrian <adrian.iosdev@gmail.com>
23 lines
613 B
Plaintext
23 lines
613 B
Plaintext
error[E0369]: binary operation `==` cannot be applied to type `[X; 3]`
|
|
--> $DIR/eq-arr.rs:5:17
|
|
|
|
|
LL | let eq = xs == [X, X, X];
|
|
| -- ^^ --------- [X; 3]
|
|
| |
|
|
| [X; 3]
|
|
|
|
|
note: an implementation of `PartialEq` might be missing for `X`
|
|
--> $DIR/eq-arr.rs:2:5
|
|
|
|
|
LL | struct X;
|
|
| ^^^^^^^^ must implement `PartialEq`
|
|
help: consider annotating `X` with `#[derive(PartialEq)]`
|
|
|
|
|
LL + #[derive(PartialEq)]
|
|
LL | struct X;
|
|
|
|
|
|
|
error: aborting due to 1 previous error
|
|
|
|
For more information about this error, try `rustc --explain E0369`.
|