rust/tests/ui/check-cfg/no-values.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
549 B
Plaintext
Raw Normal View History

warning: unexpected `cfg` condition value
--> $DIR/no-values.rs:6:7
|
LL | #[cfg(feature = "foo")]
2023-04-30 21:52:44 +08:00
| ^^^^^^^--------
| |
| help: remove the value
|
= note: no expected value for `feature`
2022-09-18 23:55:36 +08:00
= note: `#[warn(unexpected_cfgs)]` on by default
warning: unexpected `cfg` condition value
--> $DIR/no-values.rs:10:7
|
LL | #[cfg(test = "foo")]
| ^^^^--------
| |
| help: remove the value
|
= note: no expected value for `test`
warning: 2 warnings emitted