summaryrefslogtreecommitdiffstats
path: root/tests/ui/check-cfg/unexpected-cfg-name.stderr
blob: 8748b324fb6675711b3c732583a484d9c3c3ee13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
warning: unexpected `cfg` condition name: `widnows`
  --> $DIR/unexpected-cfg-name.rs:6:7
   |
LL | #[cfg(widnows)]
   |       ^^^^^^^ help: there is a config with a similar name: `windows`
   |
   = help: to expect this configuration use `--check-cfg=cfg(widnows)`
   = note: see <https://doc.rust-lang.org/nightly/unstable-book/compiler-flags/check-cfg.html> for more information about checking conditional configuration
   = note: `#[warn(unexpected_cfgs)]` on by default

warning: 1 warning emitted