]> git.proxmox.com Git - rustc.git/blob - tests/ui/const-generics/issues/issue-71169.min.stderr
New upstream version 1.74.1+dfsg1
[rustc.git] / tests / ui / const-generics / issues / issue-71169.min.stderr
1 error[E0770]: the type of const parameters must not depend on other generic parameters
2 --> $DIR/issue-71169.rs:5:43
3 |
4 LL | fn foo<const LEN: usize, const DATA: [u8; LEN]>() {}
5 | ^^^ the type must not depend on the parameter `LEN`
6 |
7 = note: const parameters may not be used in the type of const parameters
8
9 error: `[u8; LEN]` is forbidden as the type of a const generic parameter
10 --> $DIR/issue-71169.rs:5:38
11 |
12 LL | fn foo<const LEN: usize, const DATA: [u8; LEN]>() {}
13 | ^^^^^^^^^
14 |
15 = note: the only supported types are integers, `bool` and `char`
16 = help: add `#![feature(adt_const_params)]` to the crate attributes to enable more complex and user defined types
17
18 error: aborting due to 2 previous errors
19
20 For more information about this error, try `rustc --explain E0770`.