2017-12-10 22:47:55 +03:00
|
|
|
error[E0435]: attempt to use a non-constant value in a constant
|
|
|
|
--> $DIR/non-constant-expr-for-arr-len.rs:15:22
|
|
|
|
|
|
2018-02-23 03:42:32 +03:00
|
|
|
LL | let _x = [0; n];
|
2017-12-10 22:47:55 +03:00
|
|
|
| ^ non-constant value
|
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|
2018-03-03 15:59:40 +01:00
|
|
|
For more information about this error, try `rustc --explain E0435`.
|