rust/tests/ui/resolve/issue-39559-2.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
849 B
Plaintext
Raw Normal View History

2021-12-10 01:10:05 +08:00
error[E0015]: cannot call non-const fn `<Dim3 as Dim>::dim` in constants
2018-12-25 08:56:47 -07:00
--> $DIR/issue-39559-2.rs:14:24
2018-07-15 14:11:54 -07:00
|
LL | let array: [usize; Dim3::dim()]
| ^^^^^^^^^^^
2021-12-10 01:10:05 +08:00
|
= note: calls in constants are limited to constant functions, tuple structs and tuple variants
2022-12-22 18:15:15 +00:00
= help: add `#![feature(const_trait_impl)]` to the crate attributes to enable
2018-07-15 14:11:54 -07:00
2021-12-10 01:10:05 +08:00
error[E0015]: cannot call non-const fn `<Dim3 as Dim>::dim` in constants
--> $DIR/issue-39559-2.rs:16:15
2018-07-15 14:11:54 -07:00
|
LL | = [0; Dim3::dim()];
| ^^^^^^^^^^^
2021-12-10 01:10:05 +08:00
|
= note: calls in constants are limited to constant functions, tuple structs and tuple variants
2022-12-22 18:15:15 +00:00
= help: add `#![feature(const_trait_impl)]` to the crate attributes to enable
2018-07-15 14:11:54 -07:00
error: aborting due to 2 previous errors
2018-07-15 14:11:54 -07:00
For more information about this error, try `rustc --explain E0015`.