]> git.lizzy.rs Git - rust.git/blob - src/test/ui/check-cfg/mix.stderr
Remove implicit names and values from --cfg in --check-cfg
[rust.git] / src / test / ui / check-cfg / mix.stderr
1 warning: unexpected `cfg` condition name
2   --> $DIR/mix.rs:11:7
3    |
4 LL | #[cfg(widnows)]
5    |       ^^^^^^^ help: did you mean: `windows`
6    |
7    = note: `#[warn(unexpected_cfgs)]` on by default
8
9 warning: unexpected `cfg` condition value
10   --> $DIR/mix.rs:18:7
11    |
12 LL | #[cfg(feature = "bar")]
13    |       ^^^^^^^^^^^^^^^
14    |
15    = note: expected values for `feature` are: foo
16
17 warning: unexpected `cfg` condition value
18   --> $DIR/mix.rs:22:7
19    |
20 LL | #[cfg(feature = "zebra")]
21    |       ^^^^^^^^^^^^^^^^^
22    |
23    = note: expected values for `feature` are: foo
24
25 warning: unexpected `cfg` condition name
26   --> $DIR/mix.rs:26:12
27    |
28 LL | #[cfg_attr(uu, test)]
29    |            ^^
30
31 warning: unexpected `cfg` condition name
32   --> $DIR/mix.rs:35:10
33    |
34 LL |     cfg!(widnows);
35    |          ^^^^^^^ help: did you mean: `windows`
36
37 warning: unexpected `cfg` condition value
38   --> $DIR/mix.rs:38:10
39    |
40 LL |     cfg!(feature = "bar");
41    |          ^^^^^^^^^^^^^^^
42    |
43    = note: expected values for `feature` are: foo
44
45 warning: unexpected `cfg` condition value
46   --> $DIR/mix.rs:40:10
47    |
48 LL |     cfg!(feature = "zebra");
49    |          ^^^^^^^^^^^^^^^^^
50    |
51    = note: expected values for `feature` are: foo
52
53 warning: unexpected `cfg` condition name
54   --> $DIR/mix.rs:42:10
55    |
56 LL |     cfg!(xxx = "foo");
57    |          ^^^^^^^^^^^
58
59 warning: unexpected `cfg` condition name
60   --> $DIR/mix.rs:44:10
61    |
62 LL |     cfg!(xxx);
63    |          ^^^
64
65 warning: unexpected `cfg` condition name
66   --> $DIR/mix.rs:46:14
67    |
68 LL |     cfg!(any(xxx, windows));
69    |              ^^^
70
71 warning: unexpected `cfg` condition value
72   --> $DIR/mix.rs:48:14
73    |
74 LL |     cfg!(any(feature = "bad", windows));
75    |              ^^^^^^^^^^^^^^^
76    |
77    = note: expected values for `feature` are: foo
78
79 warning: unexpected `cfg` condition name
80   --> $DIR/mix.rs:50:23
81    |
82 LL |     cfg!(any(windows, xxx));
83    |                       ^^^
84
85 warning: unexpected `cfg` condition name
86   --> $DIR/mix.rs:52:20
87    |
88 LL |     cfg!(all(unix, xxx));
89    |                    ^^^
90
91 warning: unexpected `cfg` condition name
92   --> $DIR/mix.rs:54:14
93    |
94 LL |     cfg!(all(aa, bb));
95    |              ^^
96
97 warning: unexpected `cfg` condition name
98   --> $DIR/mix.rs:54:18
99    |
100 LL |     cfg!(all(aa, bb));
101    |                  ^^
102
103 warning: unexpected `cfg` condition name
104   --> $DIR/mix.rs:57:14
105    |
106 LL |     cfg!(any(aa, bb));
107    |              ^^
108
109 warning: unexpected `cfg` condition name
110   --> $DIR/mix.rs:57:18
111    |
112 LL |     cfg!(any(aa, bb));
113    |                  ^^
114
115 warning: unexpected `cfg` condition value
116   --> $DIR/mix.rs:60:20
117    |
118 LL |     cfg!(any(unix, feature = "zebra"));
119    |                    ^^^^^^^^^^^^^^^^^
120    |
121    = note: expected values for `feature` are: foo
122
123 warning: unexpected `cfg` condition name
124   --> $DIR/mix.rs:62:14
125    |
126 LL |     cfg!(any(xxx, feature = "zebra"));
127    |              ^^^
128
129 warning: unexpected `cfg` condition value
130   --> $DIR/mix.rs:62:19
131    |
132 LL |     cfg!(any(xxx, feature = "zebra"));
133    |                   ^^^^^^^^^^^^^^^^^
134    |
135    = note: expected values for `feature` are: foo
136
137 warning: unexpected `cfg` condition name
138   --> $DIR/mix.rs:65:14
139    |
140 LL |     cfg!(any(xxx, unix, xxx));
141    |              ^^^
142
143 warning: unexpected `cfg` condition name
144   --> $DIR/mix.rs:65:25
145    |
146 LL |     cfg!(any(xxx, unix, xxx));
147    |                         ^^^
148
149 warning: unexpected `cfg` condition value
150   --> $DIR/mix.rs:68:14
151    |
152 LL |     cfg!(all(feature = "zebra", feature = "zebra", feature = "zebra"));
153    |              ^^^^^^^^^^^^^^^^^
154    |
155    = note: expected values for `feature` are: foo
156
157 warning: unexpected `cfg` condition value
158   --> $DIR/mix.rs:68:33
159    |
160 LL |     cfg!(all(feature = "zebra", feature = "zebra", feature = "zebra"));
161    |                                 ^^^^^^^^^^^^^^^^^
162    |
163    = note: expected values for `feature` are: foo
164
165 warning: unexpected `cfg` condition value
166   --> $DIR/mix.rs:68:52
167    |
168 LL |     cfg!(all(feature = "zebra", feature = "zebra", feature = "zebra"));
169    |                                                    ^^^^^^^^^^^^^^^^^
170    |
171    = note: expected values for `feature` are: foo
172
173 warning: 25 warnings emitted
174