@@ -35,6 +35,8 @@ warning: unexpected `cfg` condition name
35
35
|
36
36
LL | #[cfg_attr(uu, test)]
37
37
| ^^
38
+ |
39
+ = 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`
38
40
39
41
warning: unexpected condition value `bar` for condition name `feature`
40
42
|
@@ -71,18 +73,24 @@ warning: unexpected `cfg` condition name
71
73
|
72
74
LL | cfg!(xxx = "foo");
73
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`
74
78
75
79
warning: unexpected `cfg` condition name
76
80
--> $DIR/mix.rs:48:10
77
81
|
78
82
LL | cfg!(xxx);
79
83
| ^^^
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`
80
86
81
87
warning: unexpected `cfg` condition name
82
88
--> $DIR/mix.rs:50:14
83
89
|
84
90
LL | cfg!(any(xxx, windows));
85
91
| ^^^
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`
86
94
87
95
warning: unexpected `cfg` condition value
88
96
--> $DIR/mix.rs:52:14
@@ -97,36 +105,48 @@ warning: unexpected `cfg` condition name
97
105
|
98
106
LL | cfg!(any(windows, xxx));
99
107
| ^^^
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`
100
110
101
111
warning: unexpected `cfg` condition name
102
112
--> $DIR/mix.rs:56:20
103
113
|
104
114
LL | cfg!(all(unix, xxx));
105
115
| ^^^
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`
106
118
107
119
warning: unexpected `cfg` condition name
108
120
--> $DIR/mix.rs:58:14
109
121
|
110
122
LL | cfg!(all(aa, bb));
111
123
| ^^
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`
112
126
113
127
warning: unexpected `cfg` condition name
114
128
--> $DIR/mix.rs:58:18
115
129
|
116
130
LL | cfg!(all(aa, bb));
117
131
| ^^
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`
118
134
119
135
warning: unexpected `cfg` condition name
120
136
--> $DIR/mix.rs:61:14
121
137
|
122
138
LL | cfg!(any(aa, bb));
123
139
| ^^
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`
124
142
125
143
warning: unexpected `cfg` condition name
126
144
--> $DIR/mix.rs:61:18
127
145
|
128
146
LL | cfg!(any(aa, bb));
129
147
| ^^
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`
130
150
131
151
warning: unexpected `cfg` condition value
132
152
--> $DIR/mix.rs:64:20
@@ -141,6 +161,8 @@ warning: unexpected `cfg` condition name
141
161
|
142
162
LL | cfg!(any(xxx, feature = "zebra"));
143
163
| ^^^
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`
144
166
145
167
warning: unexpected `cfg` condition value
146
168
--> $DIR/mix.rs:66:19
@@ -155,12 +177,16 @@ warning: unexpected `cfg` condition name
155
177
|
156
178
LL | cfg!(any(xxx, unix, xxx));
157
179
| ^^^
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`
158
182
159
183
warning: unexpected `cfg` condition name
160
184
--> $DIR/mix.rs:69:25
161
185
|
162
186
LL | cfg!(any(xxx, unix, xxx));
163
187
| ^^^
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`
164
190
165
191
warning: unexpected `cfg` condition value
166
192
--> $DIR/mix.rs:72:14
0 commit comments