]> git.lizzy.rs Git - rust.git/blob - tests/ui/check-cfg/invalid-cfg-value.stderr
Rollup merge of #103236 - tspiteri:redoc-int-adc-sbb, r=m-ou-se
[rust.git] / tests / ui / check-cfg / invalid-cfg-value.stderr
1 warning: unexpected `cfg` condition value
2   --> $DIR/invalid-cfg-value.rs:7:7
3    |
4 LL | #[cfg(feature = "sedre")]
5    |       ^^^^^^^^^^^^^^^^^
6    |
7    = note: expected values for `feature` are: full, serde
8    = note: `#[warn(unexpected_cfgs)]` on by default
9
10 warning: unexpected `cfg` condition value
11   --> $DIR/invalid-cfg-value.rs:14:7
12    |
13 LL | #[cfg(feature = "rand")]
14    |       ^^^^^^^^^^^^^^^^
15    |
16    = note: expected values for `feature` are: full, serde
17
18 warning: unexpected condition value `rand` for condition name `feature`
19    |
20    = help: was set with `--cfg` but isn't in the `--check-cfg` expected values
21
22 warning: 3 warnings emitted
23