1
1
warning: unexpected `cfg` condition name: `widnows`
2
- --> $DIR/mix.rs:15 :7
2
+ --> $DIR/mix.rs:16 :7
3
3
|
4
4
LL | #[cfg(widnows)]
5
5
| ^^^^^^^ help: there is a config with a similar name: `windows`
6
6
|
7
7
= note: `#[warn(unexpected_cfgs)]` on by default
8
8
9
9
warning: unexpected `cfg` condition value: (none)
10
- --> $DIR/mix.rs:19 :7
10
+ --> $DIR/mix.rs:20 :7
11
11
|
12
12
LL | #[cfg(feature)]
13
13
| ^^^^^^^- help: specify a config value: `= "foo"`
14
14
|
15
15
= note: expected values for `feature` are: `foo`
16
16
17
17
warning: unexpected `cfg` condition value: `bar`
18
- --> $DIR/mix.rs:26 :7
18
+ --> $DIR/mix.rs:27 :7
19
19
|
20
20
LL | #[cfg(feature = "bar")]
21
21
| ^^^^^^^^^^^^^^^
22
22
|
23
23
= note: expected values for `feature` are: `foo`
24
24
25
25
warning: unexpected `cfg` condition value: `zebra`
26
- --> $DIR/mix.rs:30 :7
26
+ --> $DIR/mix.rs:31 :7
27
27
|
28
28
LL | #[cfg(feature = "zebra")]
29
29
| ^^^^^^^^^^^^^^^^^
30
30
|
31
31
= note: expected values for `feature` are: `foo`
32
32
33
33
warning: unexpected `cfg` condition name: `uu`
34
- --> $DIR/mix.rs:34 :12
34
+ --> $DIR/mix.rs:35 :12
35
35
|
36
36
LL | #[cfg_attr(uu, test)]
37
37
| ^^
@@ -47,141 +47,141 @@ warning: unexpected `unknown_name` as condition name
47
47
= help: was set with `--cfg` but isn't in the `--check-cfg` expected names
48
48
49
49
warning: unexpected `cfg` condition name: `widnows`
50
- --> $DIR/mix.rs:43 :10
50
+ --> $DIR/mix.rs:44 :10
51
51
|
52
52
LL | cfg!(widnows);
53
53
| ^^^^^^^ help: there is a config with a similar name: `windows`
54
54
55
55
warning: unexpected `cfg` condition value: `bar`
56
- --> $DIR/mix.rs:46 :10
56
+ --> $DIR/mix.rs:47 :10
57
57
|
58
58
LL | cfg!(feature = "bar");
59
59
| ^^^^^^^^^^^^^^^
60
60
|
61
61
= note: expected values for `feature` are: `foo`
62
62
63
63
warning: unexpected `cfg` condition value: `zebra`
64
- --> $DIR/mix.rs:48 :10
64
+ --> $DIR/mix.rs:49 :10
65
65
|
66
66
LL | cfg!(feature = "zebra");
67
67
| ^^^^^^^^^^^^^^^^^
68
68
|
69
69
= note: expected values for `feature` are: `foo`
70
70
71
71
warning: unexpected `cfg` condition name: `xxx`
72
- --> $DIR/mix.rs:50 :10
72
+ --> $DIR/mix.rs:51 :10
73
73
|
74
74
LL | cfg!(xxx = "foo");
75
75
| ^^^^^^^^^^^
76
76
77
77
warning: unexpected `cfg` condition name: `xxx`
78
- --> $DIR/mix.rs:52 :10
78
+ --> $DIR/mix.rs:53 :10
79
79
|
80
80
LL | cfg!(xxx);
81
81
| ^^^
82
82
83
83
warning: unexpected `cfg` condition name: `xxx`
84
- --> $DIR/mix.rs:54 :14
84
+ --> $DIR/mix.rs:55 :14
85
85
|
86
86
LL | cfg!(any(xxx, windows));
87
87
| ^^^
88
88
89
89
warning: unexpected `cfg` condition value: `bad`
90
- --> $DIR/mix.rs:56 :14
90
+ --> $DIR/mix.rs:57 :14
91
91
|
92
92
LL | cfg!(any(feature = "bad", windows));
93
93
| ^^^^^^^^^^^^^^^
94
94
|
95
95
= note: expected values for `feature` are: `foo`
96
96
97
97
warning: unexpected `cfg` condition name: `xxx`
98
- --> $DIR/mix.rs:58 :23
98
+ --> $DIR/mix.rs:59 :23
99
99
|
100
100
LL | cfg!(any(windows, xxx));
101
101
| ^^^
102
102
103
103
warning: unexpected `cfg` condition name: `xxx`
104
- --> $DIR/mix.rs:60 :20
104
+ --> $DIR/mix.rs:61 :20
105
105
|
106
106
LL | cfg!(all(unix, xxx));
107
107
| ^^^
108
108
109
109
warning: unexpected `cfg` condition name: `aa`
110
- --> $DIR/mix.rs:62 :14
110
+ --> $DIR/mix.rs:63 :14
111
111
|
112
112
LL | cfg!(all(aa, bb));
113
113
| ^^
114
114
115
115
warning: unexpected `cfg` condition name: `bb`
116
- --> $DIR/mix.rs:62 :18
116
+ --> $DIR/mix.rs:63 :18
117
117
|
118
118
LL | cfg!(all(aa, bb));
119
119
| ^^
120
120
121
121
warning: unexpected `cfg` condition name: `aa`
122
- --> $DIR/mix.rs:65 :14
122
+ --> $DIR/mix.rs:66 :14
123
123
|
124
124
LL | cfg!(any(aa, bb));
125
125
| ^^
126
126
127
127
warning: unexpected `cfg` condition name: `bb`
128
- --> $DIR/mix.rs:65 :18
128
+ --> $DIR/mix.rs:66 :18
129
129
|
130
130
LL | cfg!(any(aa, bb));
131
131
| ^^
132
132
133
133
warning: unexpected `cfg` condition value: `zebra`
134
- --> $DIR/mix.rs:68 :20
134
+ --> $DIR/mix.rs:69 :20
135
135
|
136
136
LL | cfg!(any(unix, feature = "zebra"));
137
137
| ^^^^^^^^^^^^^^^^^
138
138
|
139
139
= note: expected values for `feature` are: `foo`
140
140
141
141
warning: unexpected `cfg` condition name: `xxx`
142
- --> $DIR/mix.rs:70 :14
142
+ --> $DIR/mix.rs:71 :14
143
143
|
144
144
LL | cfg!(any(xxx, feature = "zebra"));
145
145
| ^^^
146
146
147
147
warning: unexpected `cfg` condition value: `zebra`
148
- --> $DIR/mix.rs:70 :19
148
+ --> $DIR/mix.rs:71 :19
149
149
|
150
150
LL | cfg!(any(xxx, feature = "zebra"));
151
151
| ^^^^^^^^^^^^^^^^^
152
152
|
153
153
= note: expected values for `feature` are: `foo`
154
154
155
155
warning: unexpected `cfg` condition name: `xxx`
156
- --> $DIR/mix.rs:73 :14
156
+ --> $DIR/mix.rs:74 :14
157
157
|
158
158
LL | cfg!(any(xxx, unix, xxx));
159
159
| ^^^
160
160
161
161
warning: unexpected `cfg` condition name: `xxx`
162
- --> $DIR/mix.rs:73 :25
162
+ --> $DIR/mix.rs:74 :25
163
163
|
164
164
LL | cfg!(any(xxx, unix, xxx));
165
165
| ^^^
166
166
167
167
warning: unexpected `cfg` condition value: `zebra`
168
- --> $DIR/mix.rs:76 :14
168
+ --> $DIR/mix.rs:77 :14
169
169
|
170
170
LL | cfg!(all(feature = "zebra", feature = "zebra", feature = "zebra"));
171
171
| ^^^^^^^^^^^^^^^^^
172
172
|
173
173
= note: expected values for `feature` are: `foo`
174
174
175
175
warning: unexpected `cfg` condition value: `zebra`
176
- --> $DIR/mix.rs:76 :33
176
+ --> $DIR/mix.rs:77 :33
177
177
|
178
178
LL | cfg!(all(feature = "zebra", feature = "zebra", feature = "zebra"));
179
179
| ^^^^^^^^^^^^^^^^^
180
180
|
181
181
= note: expected values for `feature` are: `foo`
182
182
183
183
warning: unexpected `cfg` condition value: `zebra`
184
- --> $DIR/mix.rs:76 :52
184
+ --> $DIR/mix.rs:77 :52
185
185
|
186
186
LL | cfg!(all(feature = "zebra", feature = "zebra", feature = "zebra"));
187
187
| ^^^^^^^^^^^^^^^^^
0 commit comments