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