]> git.lizzy.rs Git - rust.git/blob - tests/ui/check-cfg/mix.stderr
Rollup merge of #103236 - tspiteri:redoc-int-adc-sbb, r=m-ou-se
[rust.git] / tests / 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 condition value `bar` for condition name `feature`
32    |
33    = help: was set with `--cfg` but isn't in the `--check-cfg` expected values
34
35 warning: unexpected `unknown_name` as condition name
36    |
37    = help: was set with `--cfg` but isn't in the `--check-cfg` expected names
38
39 warning: unexpected `cfg` condition name
40   --> $DIR/mix.rs:35:10
41    |
42 LL |     cfg!(widnows);
43    |          ^^^^^^^ help: did you mean: `windows`
44
45 warning: unexpected `cfg` condition value
46   --> $DIR/mix.rs:38:10
47    |
48 LL |     cfg!(feature = "bar");
49    |          ^^^^^^^^^^^^^^^
50    |
51    = note: expected values for `feature` are: foo
52
53 warning: unexpected `cfg` condition value
54   --> $DIR/mix.rs:40:10
55    |
56 LL |     cfg!(feature = "zebra");
57    |          ^^^^^^^^^^^^^^^^^
58    |
59    = note: expected values for `feature` are: foo
60
61 warning: unexpected `cfg` condition name
62   --> $DIR/mix.rs:42:10
63    |
64 LL |     cfg!(xxx = "foo");
65    |          ^^^^^^^^^^^
66
67 warning: unexpected `cfg` condition name
68   --> $DIR/mix.rs:44:10
69    |
70 LL |     cfg!(xxx);
71    |          ^^^
72
73 warning: unexpected `cfg` condition name
74   --> $DIR/mix.rs:46:14
75    |
76 LL |     cfg!(any(xxx, windows));
77    |              ^^^
78
79 warning: unexpected `cfg` condition value
80   --> $DIR/mix.rs:48:14
81    |
82 LL |     cfg!(any(feature = "bad", windows));
83    |              ^^^^^^^^^^^^^^^
84    |
85    = note: expected values for `feature` are: foo
86
87 warning: unexpected `cfg` condition name
88   --> $DIR/mix.rs:50:23
89    |
90 LL |     cfg!(any(windows, xxx));
91    |                       ^^^
92
93 warning: unexpected `cfg` condition name
94   --> $DIR/mix.rs:52:20
95    |
96 LL |     cfg!(all(unix, xxx));
97    |                    ^^^
98
99 warning: unexpected `cfg` condition name
100   --> $DIR/mix.rs:54:14
101    |
102 LL |     cfg!(all(aa, bb));
103    |              ^^
104
105 warning: unexpected `cfg` condition name
106   --> $DIR/mix.rs:54:18
107    |
108 LL |     cfg!(all(aa, bb));
109    |                  ^^
110
111 warning: unexpected `cfg` condition name
112   --> $DIR/mix.rs:57:14
113    |
114 LL |     cfg!(any(aa, bb));
115    |              ^^
116
117 warning: unexpected `cfg` condition name
118   --> $DIR/mix.rs:57:18
119    |
120 LL |     cfg!(any(aa, bb));
121    |                  ^^
122
123 warning: unexpected `cfg` condition value
124   --> $DIR/mix.rs:60:20
125    |
126 LL |     cfg!(any(unix, feature = "zebra"));
127    |                    ^^^^^^^^^^^^^^^^^
128    |
129    = note: expected values for `feature` are: foo
130
131 warning: unexpected `cfg` condition name
132   --> $DIR/mix.rs:62:14
133    |
134 LL |     cfg!(any(xxx, feature = "zebra"));
135    |              ^^^
136
137 warning: unexpected `cfg` condition value
138   --> $DIR/mix.rs:62:19
139    |
140 LL |     cfg!(any(xxx, feature = "zebra"));
141    |                   ^^^^^^^^^^^^^^^^^
142    |
143    = note: expected values for `feature` are: foo
144
145 warning: unexpected `cfg` condition name
146   --> $DIR/mix.rs:65:14
147    |
148 LL |     cfg!(any(xxx, unix, xxx));
149    |              ^^^
150
151 warning: unexpected `cfg` condition name
152   --> $DIR/mix.rs:65:25
153    |
154 LL |     cfg!(any(xxx, unix, xxx));
155    |                         ^^^
156
157 warning: unexpected `cfg` condition value
158   --> $DIR/mix.rs:68:14
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:33
167    |
168 LL |     cfg!(all(feature = "zebra", feature = "zebra", feature = "zebra"));
169    |                                 ^^^^^^^^^^^^^^^^^
170    |
171    = note: expected values for `feature` are: foo
172
173 warning: unexpected `cfg` condition value
174   --> $DIR/mix.rs:68:52
175    |
176 LL |     cfg!(all(feature = "zebra", feature = "zebra", feature = "zebra"));
177    |                                                    ^^^^^^^^^^^^^^^^^
178    |
179    = note: expected values for `feature` are: foo
180
181 warning: 27 warnings emitted
182