rust/tests/rustdoc-ui/check-cfg.stderr

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

13 lines
456 B
Plaintext
Raw Normal View History

warning: unexpected `cfg` condition name: `uniz`
2022-02-19 21:31:20 +08:00
--> $DIR/check-cfg.rs:5:7
|
LL | #[cfg(uniz)]
2023-04-30 21:52:44 +08:00
| ^^^^ help: there is a config with a similar name: `unix`
2022-02-19 21:31:20 +08:00
|
= help: to expect this configuration use `--check-cfg=cfg(uniz)`
= note: see <https://doc.rust-lang.org/nightly/rustc/check-cfg.html> for more information about checking conditional configuration
2022-02-19 21:31:20 +08:00
= note: `#[warn(unexpected_cfgs)]` on by default
warning: 1 warning emitted