]> git.proxmox.com Git - rustc.git/blob - src/test/ui/const-generics/issues/issue-71169.full.stderr
New upstream version 1.48.0~beta.8+dfsg1
[rustc.git] / src / test / ui / const-generics / issues / issue-71169.full.stderr
1 error[E0770]: the type of const parameters must not depend on other generic parameters
2 --> $DIR/issue-71169.rs:6: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 error: constant expression depends on a generic parameter
8 --> $DIR/issue-71169.rs:11:14
9 |
10 LL | foo::<4, DATA>();
11 | ^^^^
12 |
13 = note: this may fail depending on what value the parameter takes
14
15 error: aborting due to 2 previous errors
16
17 For more information about this error, try `rustc --explain E0770`.