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.

51 lines
1.9 KiB
Plaintext
Raw Normal View History

2021-07-29 21:15:53 +00:00
error[E0658]: `for` is not allowed in a `const fn`
--> $DIR/const-fn-error.rs:5:5
2020-12-28 17:15:16 +00:00
|
LL | / for i in 0..x {
LL | |
LL | |
LL | |
2023-04-16 11:12:37 +00:00
LL | |
2020-12-28 17:15:16 +00:00
LL | | sum += i;
LL | | }
| |_____^
2021-07-29 21:15:53 +00: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 06:39:02 +00:00
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
2020-12-28 17:15:16 +00:00
2021-12-09 17:10:05 +00: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 17:15:16 +00:00
|
LL | for i in 0..x {
| ^^^^
2021-12-09 17:10:05 +00: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
2022-12-22 18:15:15 +00:00
= help: add `#![feature(const_trait_impl)]` to the crate attributes to enable
2020-12-28 17:15:16 +00:00
error[E0658]: mutable references are not allowed in constant functions
--> $DIR/const-fn-error.rs:5:14
2020-12-28 17:15:16 +00:00
|
LL | for i in 0..x {
| ^^^^
|
= note: see issue #57349 <https://github.com/rust-lang/rust/issues/57349> for more information
= help: add `#![feature(const_mut_refs)]` to the crate attributes to enable
2024-01-10 06:39:02 +00:00
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
2020-12-28 17:15:16 +00:00
2021-12-09 17:10:05 +00: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 17:15:16 +00:00
|
LL | for i in 0..x {
| ^^^^
2021-12-09 17:10:05 +00:00
|
= note: calls in constant functions 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
2020-12-28 17:15:16 +00:00
2023-04-16 11:12:37 +00:00
error: aborting due to 4 previous errors
2020-12-28 17:15:16 +00:00
2023-04-16 11:12:37 +00:00
Some errors have detailed explanations: E0015, E0658.
2020-12-28 17:15:16 +00:00
For more information about an error, try `rustc --explain E0015`.