2022-07-13 14:10:19 +00:00
|
|
|
error: the feature `foo` has been partially stabilized since 1.62.0 and is succeeded by the feature `foobar`
|
2022-07-13 12:10:37 +00:00
|
|
|
--> $DIR/stability-attribute-implies-using-stable.rs:3:12
|
|
|
|
|
|
|
|
|
LL | #![feature(foo)]
|
|
|
|
| ^^^
|
|
|
|
|
|
|
|
|
note: the lint level is defined here
|
|
|
|
--> $DIR/stability-attribute-implies-using-stable.rs:2:9
|
|
|
|
|
|
|
|
|
LL | #![deny(stable_features)]
|
|
|
|
| ^^^^^^^^^^^^^^^
|
2022-07-13 14:10:19 +00:00
|
|
|
help: if you are using features which are still unstable, change to using `foobar`
|
|
|
|
|
|
|
|
|
LL | #![feature(foobar)]
|
|
|
|
| ~~~~~~
|
|
|
|
help: if you are using features which are now stable, remove this line
|
|
|
|
|
|
|
|
|
LL - #![feature(foo)]
|
|
|
|
|
|
2022-07-13 12:10:37 +00:00
|
|
|
|
2023-11-21 15:44:16 +00:00
|
|
|
error: aborting due to 1 previous error
|
2022-07-13 12:10:37 +00:00
|
|
|
|