mirror of
https://github.com/rust-lang/rust.git
synced 2025-09-27 12:48:20 +00:00
34 lines
1.5 KiB
Plaintext
34 lines
1.5 KiB
Plaintext
error[E0658]: the `#[loop_match]` attribute is an experimental feature
|
|
--> $DIR/feature-gate-loop-match.rs:12:5
|
|
|
|
|
LL | #[loop_match]
|
|
| ^^^^^^^^^^^^^
|
|
|
|
|
= note: see issue #132306 <https://github.com/rust-lang/rust/issues/132306> for more information
|
|
= help: add `#![feature(loop_match)]` 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[E0658]: the `#[const_continue]` attribute is an experimental feature
|
|
--> $DIR/feature-gate-loop-match.rs:17:21
|
|
|
|
|
LL | #[const_continue]
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
= note: see issue #132306 <https://github.com/rust-lang/rust/issues/132306> for more information
|
|
= help: add `#![feature(loop_match)]` 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[E0658]: the `#[const_continue]` attribute is an experimental feature
|
|
--> $DIR/feature-gate-loop-match.rs:22:21
|
|
|
|
|
LL | #[const_continue]
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
= note: see issue #132306 <https://github.com/rust-lang/rust/issues/132306> for more information
|
|
= help: add `#![feature(loop_match)]` 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: aborting due to 3 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0658`.
|