blob: ed0a4b118d4974e217e43e0f8be4fe25baf31040 (
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/const-param-type-depends-on-parent-param.rs:4:26
|
LL | fn foo<const M: [u8; N]>() {}
| ^ the type must not depend on the parameter `N`
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0770`.
|