summaryrefslogtreecommitdiff
path: root/tests/ui/check-cfg/mix.stderr
blob: 07c514aed5242f603aa0894677ea2da67c877496 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
warning: unexpected `cfg` condition name
  --> $DIR/mix.rs:11:7
   |
LL | #[cfg(widnows)]
   |       ^^^^^^^ help: there is a config with a similar name: `windows`
   |
   = note: `#[warn(unexpected_cfgs)]` on by default

warning: unexpected `cfg` condition value
  --> $DIR/mix.rs:15:7
   |
LL | #[cfg(feature)]
   |       ^^^^^^^- help: specify a config value: `= "foo"`
   |
   = note: expected values for `feature` are: `foo`

warning: unexpected `cfg` condition value
  --> $DIR/mix.rs:22:7
   |
LL | #[cfg(feature = "bar")]
   |       ^^^^^^^^^^^^^^^
   |
   = note: expected values for `feature` are: `foo`

warning: unexpected `cfg` condition value
  --> $DIR/mix.rs:26:7
   |
LL | #[cfg(feature = "zebra")]
   |       ^^^^^^^^^^^^^^^^^
   |
   = note: expected values for `feature` are: `foo`

warning: unexpected `cfg` condition name
  --> $DIR/mix.rs:30:12
   |
LL | #[cfg_attr(uu, test)]
   |            ^^

warning: unexpected condition value `bar` for condition name `feature`
   |
   = help: was set with `--cfg` but isn't in the `--check-cfg` expected values

warning: unexpected `unknown_name` as condition name
   |
   = help: was set with `--cfg` but isn't in the `--check-cfg` expected names

warning: unexpected `cfg` condition name
  --> $DIR/mix.rs:39:10
   |
LL |     cfg!(widnows);
   |          ^^^^^^^ help: there is a config with a similar name: `windows`

warning: unexpected `cfg` condition value
  --> $DIR/mix.rs:42:10
   |
LL |     cfg!(feature = "bar");
   |          ^^^^^^^^^^^^^^^
   |
   = note: expected values for `feature` are: `foo`

warning: unexpected `cfg` condition value
  --> $DIR/mix.rs:44:10
   |
LL |     cfg!(feature = "zebra");
   |          ^^^^^^^^^^^^^^^^^
   |
   = note: expected values for `feature` are: `foo`

warning: unexpected `cfg` condition name
  --> $DIR/mix.rs:46:10
   |
LL |     cfg!(xxx = "foo");
   |          ^^^^^^^^^^^

warning: unexpected `cfg` condition name
  --> $DIR/mix.rs:48:10
   |
LL |     cfg!(xxx);
   |          ^^^

warning: unexpected `cfg` condition name
  --> $DIR/mix.rs:50:14
   |
LL |     cfg!(any(xxx, windows));
   |              ^^^

warning: unexpected `cfg` condition value
  --> $DIR/mix.rs:52:14
   |
LL |     cfg!(any(feature = "bad", windows));
   |              ^^^^^^^^^^^^^^^
   |
   = note: expected values for `feature` are: `foo`

warning: unexpected `cfg` condition name
  --> $DIR/mix.rs:54:23
   |
LL |     cfg!(any(windows, xxx));
   |                       ^^^

warning: unexpected `cfg` condition name
  --> $DIR/mix.rs:56:20
   |
LL |     cfg!(all(unix, xxx));
   |                    ^^^

warning: unexpected `cfg` condition name
  --> $DIR/mix.rs:58:14
   |
LL |     cfg!(all(aa, bb));
   |              ^^

warning: unexpected `cfg` condition name
  --> $DIR/mix.rs:58:18
   |
LL |     cfg!(all(aa, bb));
   |                  ^^

warning: unexpected `cfg` condition name
  --> $DIR/mix.rs:61:14
   |
LL |     cfg!(any(aa, bb));
   |              ^^

warning: unexpected `cfg` condition name
  --> $DIR/mix.rs:61:18
   |
LL |     cfg!(any(aa, bb));
   |                  ^^

warning: unexpected `cfg` condition value
  --> $DIR/mix.rs:64:20
   |
LL |     cfg!(any(unix, feature = "zebra"));
   |                    ^^^^^^^^^^^^^^^^^
   |
   = note: expected values for `feature` are: `foo`

warning: unexpected `cfg` condition name
  --> $DIR/mix.rs:66:14
   |
LL |     cfg!(any(xxx, feature = "zebra"));
   |              ^^^

warning: unexpected `cfg` condition value
  --> $DIR/mix.rs:66:19
   |
LL |     cfg!(any(xxx, feature = "zebra"));
   |                   ^^^^^^^^^^^^^^^^^
   |
   = note: expected values for `feature` are: `foo`

warning: unexpected `cfg` condition name
  --> $DIR/mix.rs:69:14
   |
LL |     cfg!(any(xxx, unix, xxx));
   |              ^^^

warning: unexpected `cfg` condition name
  --> $DIR/mix.rs:69:25
   |
LL |     cfg!(any(xxx, unix, xxx));
   |                         ^^^

warning: unexpected `cfg` condition value
  --> $DIR/mix.rs:72:14
   |
LL |     cfg!(all(feature = "zebra", feature = "zebra", feature = "zebra"));
   |              ^^^^^^^^^^^^^^^^^
   |
   = note: expected values for `feature` are: `foo`

warning: unexpected `cfg` condition value
  --> $DIR/mix.rs:72:33
   |
LL |     cfg!(all(feature = "zebra", feature = "zebra", feature = "zebra"));
   |                                 ^^^^^^^^^^^^^^^^^
   |
   = note: expected values for `feature` are: `foo`

warning: unexpected `cfg` condition value
  --> $DIR/mix.rs:72:52
   |
LL |     cfg!(all(feature = "zebra", feature = "zebra", feature = "zebra"));
   |                                                    ^^^^^^^^^^^^^^^^^
   |
   = note: expected values for `feature` are: `foo`

warning: 28 warnings emitted