summaryrefslogtreecommitdiff
path: root/tests/ui/const-generics/adt_const_params/const_param_ty_impl_bad_field.stderr
blob: c8e065848b1e0dc481ed4a66d1f06b0b28288bab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
error[E0204]: the trait `ConstParamTy` cannot be implemented for this type
  --> $DIR/const_param_ty_impl_bad_field.rs:10:36
   |
LL | struct CantParam(NotParam);
   |                  -------- this field does not implement `ConstParamTy`
LL |
LL | impl std::marker::ConstParamTy for CantParam {}
   |                                    ^^^^^^^^^

error: aborting due to previous error

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