rust/tests/ui/consts/const-fn-error.stderr

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

38 lines
1.3 KiB
Plaintext
Raw Normal View History

2021-07-29 23:15:53 +02:00
error[E0658]: `for` is not allowed in a `const fn`
--> $DIR/const-fn-error.rs:5:5
2020-12-28 20:15:16 +03:00
|
LL | / for i in 0..x {
LL | |
LL | |
LL | |
LL | | sum += i;
LL | | }
| |_____^
2021-07-29 23:15:53 +02:00
|
= note: see issue #87575 <https://github.com/rust-lang/rust/issues/87575> for more information
= help: add `#![feature(const_for)]` to the crate attributes to enable
2024-01-10 01:39:02 -05:00
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
2020-12-28 20:15:16 +03:00
2021-12-10 01:10:05 +08:00
error[E0015]: cannot convert `std::ops::Range<usize>` into an iterator in constant functions
--> $DIR/const-fn-error.rs:5:14
2020-12-28 20:15:16 +03:00
|
LL | for i in 0..x {
| ^^^^
2021-12-10 01:10:05 +08:00
|
note: impl defined here, but it is not `const`
--> $SRC_DIR/core/src/iter/traits/collect.rs:LL:COL
= note: calls in constant functions are limited to constant functions, tuple structs and tuple variants
2020-12-28 20:15:16 +03:00
2021-12-10 01:10:05 +08:00
error[E0015]: cannot call non-const fn `<std::ops::Range<usize> as Iterator>::next` in constant functions
--> $DIR/const-fn-error.rs:5:14
2020-12-28 20:15:16 +03:00
|
LL | for i in 0..x {
| ^^^^
2021-12-10 01:10:05 +08:00
|
= note: calls in constant functions are limited to constant functions, tuple structs and tuple variants
2020-12-28 20:15:16 +03:00
2024-08-17 14:19:34 +02:00
error: aborting due to 3 previous errors
2020-12-28 20:15:16 +03:00
2023-04-16 11:12:37 +00:00
Some errors have detailed explanations: E0015, E0658.
2020-12-28 20:15:16 +03:00
For more information about an error, try `rustc --explain E0015`.