rust/tests/ui/const-generics/issues/issue-71169.full.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
469 B
Plaintext
Raw Normal View History

2020-07-16 18:14:03 +08:00
error[E0770]: the type of const parameters must not depend on other generic parameters
2020-11-17 18:44:21 +08:00
--> $DIR/issue-71169.rs:5:43
2020-07-16 18:14:03 +08:00
|
LL | fn foo<const LEN: usize, const DATA: [u8; LEN]>() {}
| ^^^ the type must not depend on the parameter `LEN`
2023-05-06 04:42:51 +08:00
|
= note: const parameters may not be used in the type of const parameters
2020-07-16 18:14:03 +08:00
error: aborting due to previous error
2020-07-16 18:14:03 +08:00
For more information about this error, try `rustc --explain E0770`.