mirror of https://github.com/rust-lang/rust
41 lines
1.5 KiB
Plaintext
41 lines
1.5 KiB
Plaintext
error[E0658]: `for` is not allowed in a `const`
|
|
--> $DIR/const-for-feature-gate.rs:4:5
|
|
|
|
|
LL | for _ in 0..5 {}
|
|
| ^^^^^^^^^^^^^^^^
|
|
|
|
|
= 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
|
|
= note: this compiler was built on YYYY-MM-DD; consider upgrading it if it is out of date
|
|
|
|
error[E0015]: cannot convert `std::ops::Range<i32>` into an iterator in constants
|
|
--> $DIR/const-for-feature-gate.rs:4:14
|
|
|
|
|
LL | for _ in 0..5 {}
|
|
| ^^^^
|
|
|
|
|
note: impl defined here, but it is not `const`
|
|
--> $SRC_DIR/core/src/iter/traits/collect.rs:LL:COL
|
|
= note: calls in constants are limited to constant functions, tuple structs and tuple variants
|
|
help: add `#![feature(const_trait_impl)]` to the crate attributes to enable
|
|
|
|
|
LL + #![feature(const_trait_impl)]
|
|
|
|
|
|
|
error[E0015]: cannot call non-const fn `<std::ops::Range<i32> as Iterator>::next` in constants
|
|
--> $DIR/const-for-feature-gate.rs:4:14
|
|
|
|
|
LL | for _ in 0..5 {}
|
|
| ^^^^
|
|
|
|
|
= note: calls in constants are limited to constant functions, tuple structs and tuple variants
|
|
help: add `#![feature(const_trait_impl)]` to the crate attributes to enable
|
|
|
|
|
LL + #![feature(const_trait_impl)]
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
Some errors have detailed explanations: E0015, E0658.
|
|
For more information about an error, try `rustc --explain E0015`.
|