rust/tests/ui/const-generics/issues/issue-80375.stderr

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

12 lines
467 B
Plaintext
Raw Normal View History

2020-12-27 18:28:09 +00:00
error: generic parameters may not be used in const operations
--> $DIR/issue-80375.rs:1:41
|
LL | struct MyArray<const COUNT: usize>([u8; COUNT + 1]);
| ^^^^^ cannot perform const operation using `COUNT`
|
= help: const parameters may only be used as standalone arguments, i.e. `COUNT`
= help: add `#![feature(generic_const_exprs)]` to allow generic const expressions
2020-12-27 18:28:09 +00:00
error: aborting due to 1 previous error
2020-12-27 18:28:09 +00:00