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

13 lines
456 B
Plaintext
Raw Normal View History

warning: unexpected `cfg` condition name: `uniz`
2022-02-19 07:31:20 -06:00
--> $DIR/check-cfg.rs:5:7
|
LL | #[cfg(uniz)]
2023-04-30 08:52:44 -05:00
| ^^^^ help: there is a config with a similar name: `unix`
2022-02-19 07:31:20 -06: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 07:31:20 -06:00
= note: `#[warn(unexpected_cfgs)]` on by default
warning: 1 warning emitted