mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-22 14:55:26 +00:00
14 lines
518 B
Plaintext
14 lines
518 B
Plaintext
warning: unexpected `cfg` condition value: `invalid`
|
|
--> $DIR/check-cfg-test.rs:9:7
|
|
|
|
|
LL | #[cfg(feature = "invalid")]
|
|
| ^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
= note: expected values for `feature` are: `test`
|
|
= help: to expect this configuration use `--check-cfg=cfg(feature, values("invalid"))`
|
|
= note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg.html> for more information about checking conditional configuration
|
|
= note: `#[warn(unexpected_cfgs)]` on by default
|
|
|
|
warning: 1 warning emitted
|
|
|