@@ -2,7 +2,7 @@ warning: unexpected `cfg` condition name
22 --> $DIR/mix.rs:11:7
33 |
44LL | #[cfg(widnows)]
5- | ^^^^^^^ help: did you mean : `windows`
5+ | ^^^^^^^ help: there is an config with a similar name : `windows`
66 |
77 = note: `#[warn(unexpected_cfgs)]` on by default
88
@@ -12,15 +12,15 @@ warning: unexpected `cfg` condition value
1212LL | #[cfg(feature = "bar")]
1313 | ^^^^^^^^^^^^^^^
1414 |
15- = note: expected values for `feature` are: foo
15+ = note: expected values for `feature` are: ` foo`
1616
1717warning: unexpected `cfg` condition value
1818 --> $DIR/mix.rs:22:7
1919 |
2020LL | #[cfg(feature = "zebra")]
2121 | ^^^^^^^^^^^^^^^^^
2222 |
23- = note: expected values for `feature` are: foo
23+ = note: expected values for `feature` are: ` foo`
2424
2525warning: unexpected `cfg` condition name
2626 --> $DIR/mix.rs:26:12
@@ -40,23 +40,23 @@ warning: unexpected `cfg` condition name
4040 --> $DIR/mix.rs:35:10
4141 |
4242LL | cfg!(widnows);
43- | ^^^^^^^ help: did you mean : `windows`
43+ | ^^^^^^^ help: there is an config with a similar name : `windows`
4444
4545warning: unexpected `cfg` condition value
4646 --> $DIR/mix.rs:38:10
4747 |
4848LL | cfg!(feature = "bar");
4949 | ^^^^^^^^^^^^^^^
5050 |
51- = note: expected values for `feature` are: foo
51+ = note: expected values for `feature` are: ` foo`
5252
5353warning: unexpected `cfg` condition value
5454 --> $DIR/mix.rs:40:10
5555 |
5656LL | cfg!(feature = "zebra");
5757 | ^^^^^^^^^^^^^^^^^
5858 |
59- = note: expected values for `feature` are: foo
59+ = note: expected values for `feature` are: ` foo`
6060
6161warning: unexpected `cfg` condition name
6262 --> $DIR/mix.rs:42:10
@@ -82,7 +82,7 @@ warning: unexpected `cfg` condition value
8282LL | cfg!(any(feature = "bad", windows));
8383 | ^^^^^^^^^^^^^^^
8484 |
85- = note: expected values for `feature` are: foo
85+ = note: expected values for `feature` are: ` foo`
8686
8787warning: unexpected `cfg` condition name
8888 --> $DIR/mix.rs:50:23
@@ -126,7 +126,7 @@ warning: unexpected `cfg` condition value
126126LL | cfg!(any(unix, feature = "zebra"));
127127 | ^^^^^^^^^^^^^^^^^
128128 |
129- = note: expected values for `feature` are: foo
129+ = note: expected values for `feature` are: ` foo`
130130
131131warning: unexpected `cfg` condition name
132132 --> $DIR/mix.rs:62:14
@@ -140,7 +140,7 @@ warning: unexpected `cfg` condition value
140140LL | cfg!(any(xxx, feature = "zebra"));
141141 | ^^^^^^^^^^^^^^^^^
142142 |
143- = note: expected values for `feature` are: foo
143+ = note: expected values for `feature` are: ` foo`
144144
145145warning: unexpected `cfg` condition name
146146 --> $DIR/mix.rs:65:14
@@ -160,23 +160,23 @@ warning: unexpected `cfg` condition value
160160LL | cfg!(all(feature = "zebra", feature = "zebra", feature = "zebra"));
161161 | ^^^^^^^^^^^^^^^^^
162162 |
163- = note: expected values for `feature` are: foo
163+ = note: expected values for `feature` are: ` foo`
164164
165165warning: unexpected `cfg` condition value
166166 --> $DIR/mix.rs:68:33
167167 |
168168LL | cfg!(all(feature = "zebra", feature = "zebra", feature = "zebra"));
169169 | ^^^^^^^^^^^^^^^^^
170170 |
171- = note: expected values for `feature` are: foo
171+ = note: expected values for `feature` are: ` foo`
172172
173173warning: unexpected `cfg` condition value
174174 --> $DIR/mix.rs:68:52
175175 |
176176LL | cfg!(all(feature = "zebra", feature = "zebra", feature = "zebra"));
177177 | ^^^^^^^^^^^^^^^^^
178178 |
179- = note: expected values for `feature` are: foo
179+ = note: expected values for `feature` are: ` foo`
180180
181181warning: 27 warnings emitted
182182
0 commit comments