]> git.lizzy.rs Git - rust.git/blob - tests/ui/resolve/issue-39559-2.stderr
Merge commit '7f27e2e74ef957baa382dc05cf08df6368165c74' into clippyup
[rust.git] / tests / ui / resolve / issue-39559-2.stderr
1 error[E0015]: cannot call non-const fn `<Dim3 as Dim>::dim` in constants
2   --> $DIR/issue-39559-2.rs:14:24
3    |
4 LL |     let array: [usize; Dim3::dim()]
5    |                        ^^^^^^^^^^^
6    |
7    = note: calls in constants are limited to constant functions, tuple structs and tuple variants
8
9 error[E0015]: cannot call non-const fn `<Dim3 as Dim>::dim` in constants
10   --> $DIR/issue-39559-2.rs:16:15
11    |
12 LL |         = [0; Dim3::dim()];
13    |               ^^^^^^^^^^^
14    |
15    = note: calls in constants are limited to constant functions, tuple structs and tuple variants
16
17 error: aborting due to 2 previous errors
18
19 For more information about this error, try `rustc --explain E0015`.