mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
16 lines
616 B
Plaintext
16 lines
616 B
Plaintext
error[E0711]: feature `foo` is declared stable since 1.29.0, but was previously declared stable since 1.0.0
|
|
--> $DIR/stability-attribute-consistency.rs:8:1
|
|
|
|
|
LL | #[stable(feature = "foo", since = "1.29.0")]
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error[E0711]: feature `foo` is declared unstable, but was previously declared stable
|
|
--> $DIR/stability-attribute-consistency.rs:12:1
|
|
|
|
|
LL | #[unstable(feature = "foo", issue = "none")]
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0711`.
|