mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 23:04:33 +00:00
32 lines
1.5 KiB
Plaintext
32 lines
1.5 KiB
Plaintext
error: can't mark as unstable using an already stable feature
|
|
--> $DIR/unstable-attribute-rejects-already-stable-features.rs:6:1
|
|
|
|
|
LL | #[unstable(feature = "arbitrary_enum_discriminant", issue = "42")]
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this feature is already stable
|
|
LL | #[rustc_const_unstable(feature = "arbitrary_enum_discriminant", issue = "42")]
|
|
LL | const fn my_fun() {}
|
|
| -------------------- the stability attribute annotates this item
|
|
|
|
|
help: consider removing the attribute
|
|
--> $DIR/unstable-attribute-rejects-already-stable-features.rs:6:1
|
|
|
|
|
LL | #[unstable(feature = "arbitrary_enum_discriminant", issue = "42")]
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: can't mark as unstable using an already stable feature
|
|
--> $DIR/unstable-attribute-rejects-already-stable-features.rs:7:1
|
|
|
|
|
LL | #[rustc_const_unstable(feature = "arbitrary_enum_discriminant", issue = "42")]
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this feature is already stable
|
|
LL | const fn my_fun() {}
|
|
| -------------------- the stability attribute annotates this item
|
|
|
|
|
help: consider removing the attribute
|
|
--> $DIR/unstable-attribute-rejects-already-stable-features.rs:7:1
|
|
|
|
|
LL | #[rustc_const_unstable(feature = "arbitrary_enum_discriminant", issue = "42")]
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: aborting due to 2 previous errors
|
|
|