mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
12 lines
398 B
Plaintext
12 lines
398 B
Plaintext
error: generic parameters may not be used in const operations
|
|
--> $DIR/issue-39559.rs:14:18
|
|
|
|
|
LL | entries: [T; D::dim()],
|
|
| ^^^^^^ cannot perform const operation using `D`
|
|
|
|
|
= note: type parameters may not be used in const expressions
|
|
= help: add `#![feature(generic_const_exprs)]` to allow generic const expressions
|
|
|
|
error: aborting due to 1 previous error
|
|
|