2018-07-23 07:49:51 -05:00
|
|
|
error[E0711]: feature `foo` is declared stable since 1.29.0, but was previously declared stable since 1.0.0
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/stability-attribute-consistency.rs:8:1
|
2018-07-23 07:49:51 -05:00
|
|
|
|
|
|
|
|
LL | #[stable(feature = "foo", since = "1.29.0")]
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error[E0711]: feature `foo` is declared unstable, but was previously declared stable
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/stability-attribute-consistency.rs:12:1
|
2018-07-23 07:49:51 -05:00
|
|
|
|
|
|
|
|
LL | #[unstable(feature = "foo", issue = "0")]
|
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|