blob: 91520a7ec086751b1f55d67f1fc079b70b43c822 [file] [log] [blame]
error[E0015]: calls in constants are limited to constant functions, tuple structs and tuple variants
--> $DIR/issue-39559-2.rs:24:24
|
LL | let array: [usize; Dim3::dim()]
| ^^^^^^^^^^^
error[E0015]: calls in constants are limited to constant functions, tuple structs and tuple variants
--> $DIR/issue-39559-2.rs:27:15
|
LL | = [0; Dim3::dim()];
| ^^^^^^^^^^^
error[E0080]: could not evaluate repeat length
--> $DIR/issue-39559-2.rs:27:15
|
LL | = [0; Dim3::dim()];
| ^^^^^^^^^^^ calling non-const fn `<Dim3 as Dim>::dim`
error[E0080]: could not evaluate constant expression
--> $DIR/issue-39559-2.rs:24:16
|
LL | let array: [usize; Dim3::dim()]
| ^^^^^^^^-----------^
| |
| calling non-const fn `<Dim3 as Dim>::dim`
error: aborting due to 4 previous errors
Some errors occurred: E0015, E0080.
For more information about an error, try `rustc --explain E0015`.