c5598d6a9e
avoid `{type error}` being leaked in user-facing messages, particularly when using the `adt_const_params` feature
12 lines
447 B
Plaintext
12 lines
447 B
Plaintext
error[E0770]: the type of const parameters must not depend on other generic parameters
|
|
--> $DIR/wfcheck_err_leak_issue_118179.rs:4:26
|
|
|
|
|
LL | struct G<T, const N: Vec<T>>(T);
|
|
| ^ the type must not depend on the parameter `T`
|
|
|
|
|
= note: type parameters may not be used in the type of const parameters
|
|
|
|
error: aborting due to 1 previous error
|
|
|
|
For more information about this error, try `rustc --explain E0770`.
|