mirror of https://github.com/rust-lang/rust.git
19 lines
517 B
Plaintext
19 lines
517 B
Plaintext
error: constant expression depends on a generic parameter
|
|
--> $DIR/issue-39211.rs:9:17
|
|
|
|
|
LL | let a = [3; M::Row::DIM];
|
|
| ^^^^^^^^^^^
|
|
|
|
|
= note: this may fail depending on what value the parameter takes
|
|
|
|
error: constant expression depends on a generic parameter
|
|
--> $DIR/issue-39211.rs:9:13
|
|
|
|
|
LL | let a = [3; M::Row::DIM];
|
|
| ^^^^^^^^^^^^^^^^
|
|
|
|
|
= note: this may fail depending on what value the parameter takes
|
|
|
|
error: aborting due to 2 previous errors
|
|
|