]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/fn-header-semantic-fail.stderr
Point (again) to more expressions with their type, even if not fully resolved
[rust.git] / src / test / ui / parser / fn-header-semantic-fail.stderr
1 error: functions cannot be both `const` and `async`
2   --> $DIR/fn-header-semantic-fail.rs:12:5
3    |
4 LL |     const async unsafe extern "C" fn ff5() {} // OK.
5    |     ^^^^^-^^^^^------------------------------
6    |     |     |
7    |     |     `async` because of this
8    |     `const` because of this
9
10 error[E0706]: functions in traits cannot be declared `async`
11   --> $DIR/fn-header-semantic-fail.rs:16:9
12    |
13 LL |         async fn ft1();
14    |         -----^^^^^^^^^^
15    |         |
16    |         `async` because of this
17    |
18    = note: `async` trait functions are not currently supported
19    = note: consider using the `async-trait` crate: https://crates.io/crates/async-trait
20
21 error[E0379]: functions in traits cannot be declared const
22   --> $DIR/fn-header-semantic-fail.rs:18:9
23    |
24 LL |         const fn ft3();
25    |         ^^^^^ functions in traits cannot be const
26
27 error[E0379]: functions in traits cannot be declared const
28   --> $DIR/fn-header-semantic-fail.rs:20:9
29    |
30 LL |         const async unsafe extern "C" fn ft5();
31    |         ^^^^^ functions in traits cannot be const
32
33 error[E0706]: functions in traits cannot be declared `async`
34   --> $DIR/fn-header-semantic-fail.rs:20:9
35    |
36 LL |         const async unsafe extern "C" fn ft5();
37    |         ^^^^^^-----^^^^^^^^^^^^^^^^^^^^^^^^^^^^
38    |               |
39    |               `async` because of this
40    |
41    = note: `async` trait functions are not currently supported
42    = note: consider using the `async-trait` crate: https://crates.io/crates/async-trait
43
44 error: functions cannot be both `const` and `async`
45   --> $DIR/fn-header-semantic-fail.rs:20:9
46    |
47 LL |         const async unsafe extern "C" fn ft5();
48    |         ^^^^^-^^^^^----------------------------
49    |         |     |
50    |         |     `async` because of this
51    |         `const` because of this
52
53 error[E0706]: functions in traits cannot be declared `async`
54   --> $DIR/fn-header-semantic-fail.rs:28:9
55    |
56 LL |         async fn ft1() {}
57    |         -----^^^^^^^^^^^^
58    |         |
59    |         `async` because of this
60    |
61    = note: `async` trait functions are not currently supported
62    = note: consider using the `async-trait` crate: https://crates.io/crates/async-trait
63
64 error[E0379]: functions in traits cannot be declared const
65   --> $DIR/fn-header-semantic-fail.rs:31:9
66    |
67 LL |         const fn ft3() {}
68    |         ^^^^^ functions in traits cannot be const
69
70 error[E0379]: functions in traits cannot be declared const
71   --> $DIR/fn-header-semantic-fail.rs:33:9
72    |
73 LL |         const async unsafe extern "C" fn ft5() {}
74    |         ^^^^^ functions in traits cannot be const
75
76 error[E0706]: functions in traits cannot be declared `async`
77   --> $DIR/fn-header-semantic-fail.rs:33:9
78    |
79 LL |         const async unsafe extern "C" fn ft5() {}
80    |         ^^^^^^-----^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
81    |               |
82    |               `async` because of this
83    |
84    = note: `async` trait functions are not currently supported
85    = note: consider using the `async-trait` crate: https://crates.io/crates/async-trait
86
87 error: functions cannot be both `const` and `async`
88   --> $DIR/fn-header-semantic-fail.rs:33:9
89    |
90 LL |         const async unsafe extern "C" fn ft5() {}
91    |         ^^^^^-^^^^^------------------------------
92    |         |     |
93    |         |     `async` because of this
94    |         `const` because of this
95
96 error: functions cannot be both `const` and `async`
97   --> $DIR/fn-header-semantic-fail.rs:45:9
98    |
99 LL |         const async unsafe extern "C" fn fi5() {}
100    |         ^^^^^-^^^^^------------------------------
101    |         |     |
102    |         |     `async` because of this
103    |         `const` because of this
104
105 error: functions in `extern` blocks cannot have qualifiers
106   --> $DIR/fn-header-semantic-fail.rs:50:18
107    |
108 LL |     extern "C" {
109    |     ---------- in this `extern` block
110 LL |         async fn fe1();
111    |                  ^^^
112    |
113 help: remove the qualifiers
114    |
115 LL |         fn fe1();
116    |         ~~
117
118 error: functions in `extern` blocks cannot have qualifiers
119   --> $DIR/fn-header-semantic-fail.rs:51:19
120    |
121 LL |     extern "C" {
122    |     ---------- in this `extern` block
123 LL |         async fn fe1();
124 LL |         unsafe fn fe2();
125    |                   ^^^
126    |
127 help: remove the qualifiers
128    |
129 LL |         fn fe2();
130    |         ~~
131
132 error: functions in `extern` blocks cannot have qualifiers
133   --> $DIR/fn-header-semantic-fail.rs:52:18
134    |
135 LL |     extern "C" {
136    |     ---------- in this `extern` block
137 ...
138 LL |         const fn fe3();
139    |                  ^^^
140    |
141 help: remove the qualifiers
142    |
143 LL |         fn fe3();
144    |         ~~
145
146 error: functions in `extern` blocks cannot have qualifiers
147   --> $DIR/fn-header-semantic-fail.rs:53:23
148    |
149 LL |     extern "C" {
150    |     ---------- in this `extern` block
151 ...
152 LL |         extern "C" fn fe4();
153    |                       ^^^
154    |
155 help: remove the qualifiers
156    |
157 LL |         fn fe4();
158    |         ~~
159
160 error: functions in `extern` blocks cannot have qualifiers
161   --> $DIR/fn-header-semantic-fail.rs:54:42
162    |
163 LL |     extern "C" {
164    |     ---------- in this `extern` block
165 ...
166 LL |         const async unsafe extern "C" fn fe5();
167    |                                          ^^^
168    |
169 help: remove the qualifiers
170    |
171 LL |         fn fe5();
172    |         ~~
173
174 error: functions cannot be both `const` and `async`
175   --> $DIR/fn-header-semantic-fail.rs:54:9
176    |
177 LL |         const async unsafe extern "C" fn fe5();
178    |         ^^^^^-^^^^^----------------------------
179    |         |     |
180    |         |     `async` because of this
181    |         `const` because of this
182
183 error[E0053]: method `ft1` has an incompatible type for trait
184   --> $DIR/fn-header-semantic-fail.rs:28:24
185    |
186 LL |         async fn ft1() {}
187    |                        ^
188    |                        |
189    |                        checked the `Output` of this `async fn`, found opaque type
190    |                        expected `()`, found opaque type
191    |
192    = note: while checking the return type of the `async fn`
193 note: type in trait
194   --> $DIR/fn-header-semantic-fail.rs:16:23
195    |
196 LL |         async fn ft1();
197    |                       ^
198    = note: expected fn pointer `fn()`
199               found fn pointer `fn() -> impl Future<Output = ()>`
200
201 error[E0053]: method `ft5` has an incompatible type for trait
202   --> $DIR/fn-header-semantic-fail.rs:33:48
203    |
204 LL |         const async unsafe extern "C" fn ft5() {}
205    |                                                ^
206    |                                                |
207    |                                                checked the `Output` of this `async fn`, found opaque type
208    |                                                expected `()`, found opaque type
209    |
210    = note: while checking the return type of the `async fn`
211 note: type in trait
212   --> $DIR/fn-header-semantic-fail.rs:20:47
213    |
214 LL |         const async unsafe extern "C" fn ft5();
215    |                                               ^
216    = note: expected fn pointer `unsafe extern "C" fn()`
217               found fn pointer `unsafe extern "C" fn() -> impl Future<Output = ()>`
218
219 error: aborting due to 20 previous errors
220
221 Some errors have detailed explanations: E0053, E0379, E0706.
222 For more information about an error, try `rustc --explain E0053`.