blob: 2b28e29421c90348a871b6dfdc33e0c72c9667a2 (
plain)
1
2
3
4
5
6
7
8
9
|
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`
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0770`.
|