2024-10-11 20:05:58 +00:00
|
|
|
error: can't mark as unstable using an already stable feature
|
2024-11-02 20:19:21 +00:00
|
|
|
--> $DIR/unstable-attribute-rejects-already-stable-features.rs:6:1
|
2024-10-11 20:05:58 +00:00
|
|
|
|
|
2024-11-02 20:19:21 +00:00
|
|
|
LL | #[unstable(feature = "arbitrary_enum_discriminant", issue = "42")]
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this feature is already stable
|
2024-10-11 20:05:58 +00:00
|
|
|
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
|
2024-11-02 20:19:21 +00:00
|
|
|
--> $DIR/unstable-attribute-rejects-already-stable-features.rs:6:1
|
2024-10-11 20:05:58 +00:00
|
|
|
|
|
2024-11-02 20:19:21 +00:00
|
|
|
LL | #[unstable(feature = "arbitrary_enum_discriminant", issue = "42")]
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2024-10-11 20:05:58 +00:00
|
|
|
|
|
|
|
error: can't mark as unstable using an already stable feature
|
2024-11-02 20:19:21 +00:00
|
|
|
--> $DIR/unstable-attribute-rejects-already-stable-features.rs:7:1
|
2024-10-11 20:05:58 +00:00
|
|
|
|
|
|
|
|
LL | #[rustc_const_unstable(feature = "arbitrary_enum_discriminant", issue = "42")]
|
2024-11-02 20:19:21 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ this feature is already stable
|
2024-10-11 20:05:58 +00:00
|
|
|
LL | const fn my_fun() {}
|
|
|
|
| -------------------- the stability attribute annotates this item
|
|
|
|
|
|
|
|
|
help: consider removing the attribute
|
2024-11-02 20:19:21 +00:00
|
|
|
--> $DIR/unstable-attribute-rejects-already-stable-features.rs:7:1
|
2024-10-11 20:05:58 +00:00
|
|
|
|
|
2024-11-02 20:19:21 +00:00
|
|
|
LL | #[rustc_const_unstable(feature = "arbitrary_enum_discriminant", issue = "42")]
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
2024-10-11 20:05:58 +00:00
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|