mirror of
https://github.com/rust-lang/rust.git
synced 2025-09-28 13:46:03 +00:00
19 lines
581 B
Plaintext
19 lines
581 B
Plaintext
error: constant expression depends on a generic parameter
|
|
--> $DIR/generic-parameter-in-const-expression-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/generic-parameter-in-const-expression-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
|
|
|