]> git.lizzy.rs Git - rust.git/blob - tests/ui/resolve/issue-39559-2.stderr
Rollup merge of #106244 - atouchet:readme3, r=workingjubilee
[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    = help: add `#![feature(const_trait_impl)]` to the crate attributes to enable
9
10 error[E0015]: cannot call non-const fn `<Dim3 as Dim>::dim` in constants
11   --> $DIR/issue-39559-2.rs:16:15
12    |
13 LL |         = [0; Dim3::dim()];
14    |               ^^^^^^^^^^^
15    |
16    = note: calls in constants are limited to constant functions, tuple structs and tuple variants
17    = help: add `#![feature(const_trait_impl)]` to the crate attributes to enable
18
19 error: aborting due to 2 previous errors
20
21 For more information about this error, try `rustc --explain E0015`.