]> git.lizzy.rs Git - rust.git/blob - tests/ui/stability-attribute/stability-attribute-implies-using-stable.stderr
Rollup merge of #106701 - ibraheemdev:sync-sender-spin, r=Amanieu
[rust.git] / tests / ui / stability-attribute / stability-attribute-implies-using-stable.stderr
1 error: the feature `foo` has been partially stabilized since 1.62.0 and is succeeded by the feature `foobar`
2   --> $DIR/stability-attribute-implies-using-stable.rs:3:12
3    |
4 LL | #![feature(foo)]
5    |            ^^^
6    |
7 note: the lint level is defined here
8   --> $DIR/stability-attribute-implies-using-stable.rs:2:9
9    |
10 LL | #![deny(stable_features)]
11    |         ^^^^^^^^^^^^^^^
12 help: if you are using features which are still unstable, change to using `foobar`
13    |
14 LL | #![feature(foobar)]
15    |            ~~~~~~
16 help: if you are using features which are now stable, remove this line
17    |
18 LL - #![feature(foo)]
19    |
20
21 error: aborting due to previous error
22