@@ -73,24 +73,18 @@ warning: unexpected `cfg` condition name: `xxx`
73
73
|
74
74
LL | cfg!(xxx = "foo");
75
75
| ^^^^^^^^^^^
76
- |
77
- = help: expected names are: `debug_assertions`, `doc`, `doctest`, `feature`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `sanitize`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `unix`, `windows`
78
76
79
77
warning: unexpected `cfg` condition name: `xxx`
80
78
--> $DIR/mix.rs:48:10
81
79
|
82
80
LL | cfg!(xxx);
83
81
| ^^^
84
- |
85
- = help: expected names are: `debug_assertions`, `doc`, `doctest`, `feature`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `sanitize`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `unix`, `windows`
86
82
87
83
warning: unexpected `cfg` condition name: `xxx`
88
84
--> $DIR/mix.rs:50:14
89
85
|
90
86
LL | cfg!(any(xxx, windows));
91
87
| ^^^
92
- |
93
- = help: expected names are: `debug_assertions`, `doc`, `doctest`, `feature`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `sanitize`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `unix`, `windows`
94
88
95
89
warning: unexpected `cfg` condition value: `bad`
96
90
--> $DIR/mix.rs:52:14
@@ -105,48 +99,36 @@ warning: unexpected `cfg` condition name: `xxx`
105
99
|
106
100
LL | cfg!(any(windows, xxx));
107
101
| ^^^
108
- |
109
- = help: expected names are: `debug_assertions`, `doc`, `doctest`, `feature`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `sanitize`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `unix`, `windows`
110
102
111
103
warning: unexpected `cfg` condition name: `xxx`
112
104
--> $DIR/mix.rs:56:20
113
105
|
114
106
LL | cfg!(all(unix, xxx));
115
107
| ^^^
116
- |
117
- = help: expected names are: `debug_assertions`, `doc`, `doctest`, `feature`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `sanitize`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `unix`, `windows`
118
108
119
109
warning: unexpected `cfg` condition name: `aa`
120
110
--> $DIR/mix.rs:58:14
121
111
|
122
112
LL | cfg!(all(aa, bb));
123
113
| ^^
124
- |
125
- = help: expected names are: `debug_assertions`, `doc`, `doctest`, `feature`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `sanitize`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `unix`, `windows`
126
114
127
115
warning: unexpected `cfg` condition name: `bb`
128
116
--> $DIR/mix.rs:58:18
129
117
|
130
118
LL | cfg!(all(aa, bb));
131
119
| ^^
132
- |
133
- = help: expected names are: `debug_assertions`, `doc`, `doctest`, `feature`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `sanitize`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `unix`, `windows`
134
120
135
121
warning: unexpected `cfg` condition name: `aa`
136
122
--> $DIR/mix.rs:61:14
137
123
|
138
124
LL | cfg!(any(aa, bb));
139
125
| ^^
140
- |
141
- = help: expected names are: `debug_assertions`, `doc`, `doctest`, `feature`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `sanitize`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `unix`, `windows`
142
126
143
127
warning: unexpected `cfg` condition name: `bb`
144
128
--> $DIR/mix.rs:61:18
145
129
|
146
130
LL | cfg!(any(aa, bb));
147
131
| ^^
148
- |
149
- = help: expected names are: `debug_assertions`, `doc`, `doctest`, `feature`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `sanitize`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `unix`, `windows`
150
132
151
133
warning: unexpected `cfg` condition value: `zebra`
152
134
--> $DIR/mix.rs:64:20
@@ -161,8 +143,6 @@ warning: unexpected `cfg` condition name: `xxx`
161
143
|
162
144
LL | cfg!(any(xxx, feature = "zebra"));
163
145
| ^^^
164
- |
165
- = help: expected names are: `debug_assertions`, `doc`, `doctest`, `feature`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `sanitize`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `unix`, `windows`
166
146
167
147
warning: unexpected `cfg` condition value: `zebra`
168
148
--> $DIR/mix.rs:66:19
@@ -177,16 +157,12 @@ warning: unexpected `cfg` condition name: `xxx`
177
157
|
178
158
LL | cfg!(any(xxx, unix, xxx));
179
159
| ^^^
180
- |
181
- = help: expected names are: `debug_assertions`, `doc`, `doctest`, `feature`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `sanitize`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `unix`, `windows`
182
160
183
161
warning: unexpected `cfg` condition name: `xxx`
184
162
--> $DIR/mix.rs:69:25
185
163
|
186
164
LL | cfg!(any(xxx, unix, xxx));
187
165
| ^^^
188
- |
189
- = help: expected names are: `debug_assertions`, `doc`, `doctest`, `feature`, `miri`, `overflow_checks`, `panic`, `proc_macro`, `relocation_model`, `sanitize`, `target_abi`, `target_arch`, `target_endian`, `target_env`, `target_family`, `target_feature`, `target_has_atomic`, `target_has_atomic_equal_alignment`, `target_has_atomic_load_store`, `target_os`, `target_pointer_width`, `target_thread_local`, `target_vendor`, `test`, `unix`, `windows`
190
166
191
167
warning: unexpected `cfg` condition value: `zebra`
192
168
--> $DIR/mix.rs:72:14
0 commit comments