Skip to content

Commit

Permalink
add regression test for rust-lang#71169
Browse files Browse the repository at this point in the history
  • Loading branch information
lcnr committed Jul 16, 2020
1 parent 01f5dd3 commit f52039d
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/test/ui/const-generics/issues/issue-71169.rs
Original file line number Diff line number Diff line change
@@ -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 changes: 17 additions & 0 deletions src/test/ui/const-generics/issues/issue-71169.stderr
Original file line number Diff line number Diff line change
@@ -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`.

0 comments on commit f52039d

Please sign in to comment.