mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
40 lines
1.1 KiB
Plaintext
40 lines
1.1 KiB
Plaintext
error[E0741]: `Foo` must implement `ConstParamTy` to be used as the type of a const generic parameter
|
|
--> $DIR/unify-op-with-fn-call.rs:18:29
|
|
|
|
|
LL | struct Evaluatable<const N: Foo>;
|
|
| ^^^
|
|
|
|
|
help: add `#[derive(ConstParamTy)]` to the struct
|
|
|
|
|
LL + #[derive(ConstParamTy)]
|
|
LL | struct Foo(u8);
|
|
|
|
|
|
|
error[E0741]: `Foo` must implement `ConstParamTy` to be used as the type of a const generic parameter
|
|
--> $DIR/unify-op-with-fn-call.rs:20:17
|
|
|
|
|
LL | fn foo<const N: Foo>(a: Evaluatable<{ N + N }>) {
|
|
| ^^^
|
|
|
|
|
help: add `#[derive(ConstParamTy)]` to the struct
|
|
|
|
|
LL + #[derive(ConstParamTy)]
|
|
LL | struct Foo(u8);
|
|
|
|
|
|
|
error[E0741]: `Foo` must implement `ConstParamTy` to be used as the type of a const generic parameter
|
|
--> $DIR/unify-op-with-fn-call.rs:24:17
|
|
|
|
|
LL | fn bar<const N: Foo>() {}
|
|
| ^^^
|
|
|
|
|
help: add `#[derive(ConstParamTy)]` to the struct
|
|
|
|
|
LL + #[derive(ConstParamTy)]
|
|
LL | struct Foo(u8);
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0741`.
|