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
465 B
Plaintext
Raw Normal View History

2020-12-27 12:28:09 -06: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: use `#![feature(generic_const_exprs)]` to allow generic const expressions
2020-12-27 12:28:09 -06:00
error: aborting due to previous error