summaryrefslogtreecommitdiffstats
path: root/src/test/ui/const-generics/forbid-non-structural_match-types.stderr
blob: 81b9bdfbd60272e7f8606e87f047ab4ce1770ab1 (plain)
1
2
3
4
5
6
7
8
9
error[E0741]: `C` must be annotated with `#[derive(PartialEq, Eq)]` to be used as the type of a const parameter
  --> $DIR/forbid-non-structural_match-types.rs:11:19
   |
LL | struct D<const X: C>;
   |                   ^ `C` doesn't derive both `PartialEq` and `Eq`

error: aborting due to previous error

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