mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-24 15:54:15 +00:00
20 lines
474 B
Plaintext
20 lines
474 B
Plaintext
warning: unexpected `cfg` condition value: (none)
|
|
--> $DIR/order-independant.rs:8:7
|
|
|
|
|
LL | #[cfg(a)]
|
|
| ^- help: specify a config value: `= "b"`
|
|
|
|
|
= note: expected values for `a` are: `b`
|
|
= note: `#[warn(unexpected_cfgs)]` on by default
|
|
|
|
warning: unexpected `cfg` condition value: `unk`
|
|
--> $DIR/order-independant.rs:12:7
|
|
|
|
|
LL | #[cfg(a = "unk")]
|
|
| ^^^^^^^^^
|
|
|
|
|
= note: expected values for `a` are: `b`
|
|
|
|
warning: 2 warnings emitted
|
|
|