rust/tests/ui/pattern/usefulness/const-partial_eq-fallback-ice.stderr

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

12 lines
451 B
Plaintext
Raw Normal View History

2023-09-26 02:39:41 -05:00
error: to use a constant of type `MyType` in a pattern, `MyType` must be annotated with `#[derive(PartialEq)]`
2022-11-17 09:30:42 -06:00
--> $DIR/const-partial_eq-fallback-ice.rs:14:12
|
LL | if let CONSTANT = &&MyType {
| ^^^^^^^^
|
= note: the traits must be derived, manual `impl`s are not sufficient
2023-09-26 02:39:41 -05:00
= note: see https://doc.rust-lang.org/stable/std/marker/trait.StructuralPartialEq.html for details
2022-11-17 09:30:42 -06:00
error: aborting due to 1 previous error
2022-11-17 09:30:42 -06:00