add regression test for #71169
This commit is contained in:
parent
01f5dd374c
commit
f52039d5e8
2 changed files with 27 additions and 0 deletions
10
src/test/ui/const-generics/issues/issue-71169.rs
Normal file
10
src/test/ui/const-generics/issues/issue-71169.rs
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
#![feature(const_generics)]
|
||||
#![allow(incomplete_features)]
|
||||
|
||||
fn foo<const LEN: usize, const DATA: [u8; LEN]>() {}
|
||||
//~^ ERROR the type of const parameters must not
|
||||
fn main() {
|
||||
const DATA: [u8; 4] = *b"ABCD";
|
||||
foo::<4, DATA>();
|
||||
//~^ ERROR constant expression depends on
|
||||
}
|
||||
17
src/test/ui/const-generics/issues/issue-71169.stderr
Normal file
17
src/test/ui/const-generics/issues/issue-71169.stderr
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
error[E0770]: the type of const parameters must not depend on other generic parameters
|
||||
--> $DIR/issue-71169.rs:4:43
|
||||
|
|
||||
LL | fn foo<const LEN: usize, const DATA: [u8; LEN]>() {}
|
||||
| ^^^ the type must not depend on the parameter `LEN`
|
||||
|
||||
error: constant expression depends on a generic parameter
|
||||
--> $DIR/issue-71169.rs:8:14
|
||||
|
|
||||
LL | foo::<4, DATA>();
|
||||
| ^^^^
|
||||
|
|
||||
= note: this may fail depending on what value the parameter takes
|
||||
|
||||
error: aborting due to 2 previous errors
|
||||
|
||||
For more information about this error, try `rustc --explain E0770`.
|
||||
Loading…
Add table
Add a link
Reference in a new issue