2020-12-28 11:15:16 -06:00
|
|
|
error[E0744]: `for` is not allowed in a `const fn`
|
2021-04-26 07:53:41 -05:00
|
|
|
--> $DIR/const-fn-error.rs:5:5
|
2020-12-28 11:15:16 -06:00
|
|
|
|
|
|
|
|
LL | / for i in 0..x {
|
|
|
|
LL | |
|
|
|
|
LL | |
|
|
|
|
LL | |
|
|
|
|
... |
|
|
|
|
LL | | sum += i;
|
|
|
|
LL | | }
|
|
|
|
| |_____^
|
|
|
|
|
|
|
|
error[E0015]: calls in constant functions are limited to constant functions, tuple structs and tuple variants
|
2021-04-26 07:53:41 -05:00
|
|
|
--> $DIR/const-fn-error.rs:5:14
|
2020-12-28 11:15:16 -06:00
|
|
|
|
|
|
|
|
LL | for i in 0..x {
|
|
|
|
| ^^^^
|
|
|
|
|
|
|
|
error[E0658]: mutable references are not allowed in constant functions
|
2021-04-26 07:53:41 -05:00
|
|
|
--> $DIR/const-fn-error.rs:5:14
|
2020-12-28 11:15:16 -06: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
|
|
|
|
|
|
|
|
error[E0015]: calls in constant functions are limited to constant functions, tuple structs and tuple variants
|
2021-04-26 07:53:41 -05:00
|
|
|
--> $DIR/const-fn-error.rs:5:14
|
2020-12-28 11:15:16 -06:00
|
|
|
|
|
|
|
|
LL | for i in 0..x {
|
|
|
|
| ^^^^
|
|
|
|
|
|
|
|
error[E0080]: evaluation of constant value failed
|
2021-04-26 07:53:41 -05:00
|
|
|
--> $DIR/const-fn-error.rs:5:14
|
2020-12-28 11:15:16 -06:00
|
|
|
|
|
|
|
|
LL | for i in 0..x {
|
|
|
|
| ^^^^
|
|
|
|
| |
|
|
|
|
| calling non-const function `<std::ops::Range<usize> as IntoIterator>::into_iter`
|
2021-04-26 07:53:41 -05:00
|
|
|
| inside `f` at $DIR/const-fn-error.rs:5:14
|
2020-12-28 11:15:16 -06:00
|
|
|
...
|
|
|
|
LL | let a : [i32; f(X)];
|
2021-04-26 07:53:41 -05:00
|
|
|
| ---- inside `main::{constant#0}` at $DIR/const-fn-error.rs:18:19
|
2020-12-28 11:15:16 -06:00
|
|
|
|
|
|
|
error: aborting due to 5 previous errors
|
|
|
|
|
|
|
|
Some errors have detailed explanations: E0015, E0080, E0658, E0744.
|
|
|
|
For more information about an error, try `rustc --explain E0015`.
|