]> git.lizzy.rs Git - rust.git/blob - tests/ui/check-cfg/well-known-names.stderr
Rollup merge of #107615 - notriddle:notriddle/nbsp, r=GuillaumeGomez
[rust.git] / tests / ui / check-cfg / well-known-names.stderr
1 warning: unexpected `cfg` condition name
2   --> $DIR/well-known-names.rs:6:7
3    |
4 LL | #[cfg(target_oz = "linux")]
5    |       ---------^^^^^^^^^^
6    |       |
7    |       help: did you mean: `target_os`
8    |
9    = note: `#[warn(unexpected_cfgs)]` on by default
10
11 warning: unexpected `cfg` condition name
12   --> $DIR/well-known-names.rs:13:7
13    |
14 LL | #[cfg(features = "foo")]
15    |       --------^^^^^^^^
16    |       |
17    |       help: did you mean: `feature`
18
19 warning: unexpected `cfg` condition name
20   --> $DIR/well-known-names.rs:20:7
21    |
22 LL | #[cfg(uniw)]
23    |       ^^^^ help: did you mean: `unix`
24
25 warning: 3 warnings emitted
26