@@ -59,75 +59,75 @@ LL | let _ = await bar();
59
59
| ^^^^^^^^^^^ help: `await` is a postfix operation: `bar().await`
60
60
61
61
error: incorrect use of `await`
62
- --> $DIR/incorrect-syntax-suggestions.rs:57 :13
62
+ --> $DIR/incorrect-syntax-suggestions.rs:56 :13
63
63
|
64
64
LL | let _ = await? bar();
65
65
| ^^^^^^^^^^^^ help: `await` is a postfix operation: `bar().await?`
66
66
67
67
error: incorrect use of `await`
68
- --> $DIR/incorrect-syntax-suggestions.rs:62 :13
68
+ --> $DIR/incorrect-syntax-suggestions.rs:60 :13
69
69
|
70
70
LL | let _ = await bar()?;
71
71
| ^^^^^^^^^^^^ help: `await` is a postfix operation: `bar()?.await`
72
72
73
73
error: incorrect use of `await`
74
- --> $DIR/incorrect-syntax-suggestions.rs:66 :14
74
+ --> $DIR/incorrect-syntax-suggestions.rs:64 :14
75
75
|
76
76
LL | let _ = (await bar())?;
77
77
| ^^^^^^^^^^^ help: `await` is a postfix operation: `bar().await`
78
78
79
79
error: incorrect use of `await`
80
- --> $DIR/incorrect-syntax-suggestions.rs:71 :24
80
+ --> $DIR/incorrect-syntax-suggestions.rs:68 :24
81
81
|
82
82
LL | let _ = bar().await();
83
83
| ^^ help: `await` is not a method call, remove the parentheses
84
84
85
85
error: incorrect use of `await`
86
- --> $DIR/incorrect-syntax-suggestions.rs:76 :24
86
+ --> $DIR/incorrect-syntax-suggestions.rs:73 :24
87
87
|
88
88
LL | let _ = bar().await()?;
89
89
| ^^ help: `await` is not a method call, remove the parentheses
90
90
91
91
error: incorrect use of `await`
92
- --> $DIR/incorrect-syntax-suggestions.rs:104 :13
92
+ --> $DIR/incorrect-syntax-suggestions.rs:101 :13
93
93
|
94
94
LL | let _ = await!(bar());
95
95
| ^^^^^^^^^^^^^ help: `await` is a postfix operation: `bar().await`
96
96
97
97
error: incorrect use of `await`
98
- --> $DIR/incorrect-syntax-suggestions.rs:108 :13
98
+ --> $DIR/incorrect-syntax-suggestions.rs:105 :13
99
99
|
100
100
LL | let _ = await!(bar())?;
101
101
| ^^^^^^^^^^^^^ help: `await` is a postfix operation: `bar().await`
102
102
103
103
error: incorrect use of `await`
104
- --> $DIR/incorrect-syntax-suggestions.rs:113 :17
104
+ --> $DIR/incorrect-syntax-suggestions.rs:110 :17
105
105
|
106
106
LL | let _ = await!(bar())?;
107
107
| ^^^^^^^^^^^^^ help: `await` is a postfix operation: `bar().await`
108
108
109
109
error: incorrect use of `await`
110
- --> $DIR/incorrect-syntax-suggestions.rs:121 :17
110
+ --> $DIR/incorrect-syntax-suggestions.rs:117 :17
111
111
|
112
112
LL | let _ = await!(bar())?;
113
113
| ^^^^^^^^^^^^^ help: `await` is a postfix operation: `bar().await`
114
114
115
115
error: expected expression, found `=>`
116
- --> $DIR/incorrect-syntax-suggestions.rs:129 :25
116
+ --> $DIR/incorrect-syntax-suggestions.rs:124 :25
117
117
|
118
118
LL | match await { await => () }
119
119
| ----- ^^ expected expression
120
120
| |
121
121
| while parsing this incorrect await expression
122
122
123
123
error: incorrect use of `await`
124
- --> $DIR/incorrect-syntax-suggestions.rs:129 :11
124
+ --> $DIR/incorrect-syntax-suggestions.rs:124 :11
125
125
|
126
126
LL | match await { await => () }
127
127
| ^^^^^^^^^^^^^^^^^^^^^ help: `await` is a postfix operation: `{ await => () }.await`
128
128
129
129
error: expected one of `.`, `?`, `{`, or an operator, found `}`
130
- --> $DIR/incorrect-syntax-suggestions.rs:132 :1
130
+ --> $DIR/incorrect-syntax-suggestions.rs:127 :1
131
131
|
132
132
LL | match await { await => () }
133
133
| ----- - expected one of `.`, `?`, `{`, or an operator
@@ -138,93 +138,53 @@ LL | }
138
138
| ^ unexpected token
139
139
140
140
error[E0728]: `await` is only allowed inside `async` functions and blocks
141
- --> $DIR/incorrect-syntax-suggestions.rs:52:13
142
- |
143
- LL | fn foo9() -> Result<(), ()> {
144
- | ---- this is not `async`
145
- LL | let _ = await bar();
146
- | ^^^^^ only allowed inside `async` functions and blocks
147
-
148
- error[E0728]: `await` is only allowed inside `async` functions and blocks
149
- --> $DIR/incorrect-syntax-suggestions.rs:57:13
150
- |
151
- LL | fn foo10() -> Result<(), ()> {
152
- | ----- this is not `async`
153
- LL | let _ = await? bar();
154
- | ^^^^^ only allowed inside `async` functions and blocks
155
-
156
- error[E0728]: `await` is only allowed inside `async` functions and blocks
157
- --> $DIR/incorrect-syntax-suggestions.rs:66:14
158
- |
159
- LL | fn foo12() -> Result<(), ()> {
160
- | ----- this is not `async`
161
- LL | let _ = (await bar())?;
162
- | ^^^^^ only allowed inside `async` functions and blocks
163
-
164
- error[E0728]: `await` is only allowed inside `async` functions and blocks
165
- --> $DIR/incorrect-syntax-suggestions.rs:71:19
141
+ --> $DIR/incorrect-syntax-suggestions.rs:68:19
166
142
|
167
143
LL | fn foo13() -> Result<(), ()> {
168
144
| ----- this is not `async`
169
145
LL | let _ = bar().await();
170
146
| ^^^^^ only allowed inside `async` functions and blocks
171
147
172
148
error[E0728]: `await` is only allowed inside `async` functions and blocks
173
- --> $DIR/incorrect-syntax-suggestions.rs:76 :19
149
+ --> $DIR/incorrect-syntax-suggestions.rs:73 :19
174
150
|
175
151
LL | fn foo14() -> Result<(), ()> {
176
152
| ----- this is not `async`
177
153
LL | let _ = bar().await()?;
178
154
| ^^^^^ only allowed inside `async` functions and blocks
179
155
180
156
error[E0728]: `await` is only allowed inside `async` functions and blocks
181
- --> $DIR/incorrect-syntax-suggestions.rs:81 :19
157
+ --> $DIR/incorrect-syntax-suggestions.rs:78 :19
182
158
|
183
159
LL | fn foo15() -> Result<(), ()> {
184
160
| ----- this is not `async`
185
161
LL | let _ = bar().await;
186
162
| ^^^^^ only allowed inside `async` functions and blocks
187
163
188
164
error[E0728]: `await` is only allowed inside `async` functions and blocks
189
- --> $DIR/incorrect-syntax-suggestions.rs:85 :19
165
+ --> $DIR/incorrect-syntax-suggestions.rs:82 :19
190
166
|
191
167
LL | fn foo16() -> Result<(), ()> {
192
168
| ----- this is not `async`
193
169
LL | let _ = bar().await?;
194
170
| ^^^^^ only allowed inside `async` functions and blocks
195
171
196
172
error[E0728]: `await` is only allowed inside `async` functions and blocks
197
- --> $DIR/incorrect-syntax-suggestions.rs:90 :23
173
+ --> $DIR/incorrect-syntax-suggestions.rs:87 :23
198
174
|
199
175
LL | fn foo() -> Result<(), ()> {
200
176
| --- this is not `async`
201
177
LL | let _ = bar().await?;
202
178
| ^^^^^ only allowed inside `async` functions and blocks
203
179
204
180
error[E0728]: `await` is only allowed inside `async` functions and blocks
205
- --> $DIR/incorrect-syntax-suggestions.rs:97 :23
181
+ --> $DIR/incorrect-syntax-suggestions.rs:94 :23
206
182
|
207
183
LL | let foo = || {
208
184
| -- this is not `async`
209
185
LL | let _ = bar().await?;
210
186
| ^^^^^ only allowed inside `async` functions and blocks
211
187
212
- error[E0728]: `await` is only allowed inside `async` functions and blocks
213
- --> $DIR/incorrect-syntax-suggestions.rs:113:17
214
- |
215
- LL | fn foo() -> Result<(), ()> {
216
- | --- this is not `async`
217
- LL | let _ = await!(bar())?;
218
- | ^^^^^ only allowed inside `async` functions and blocks
219
-
220
- error[E0728]: `await` is only allowed inside `async` functions and blocks
221
- --> $DIR/incorrect-syntax-suggestions.rs:121:17
222
- |
223
- LL | let foo = || {
224
- | -- this is not `async`
225
- LL | let _ = await!(bar())?;
226
- | ^^^^^ only allowed inside `async` functions and blocks
227
-
228
- error: aborting due to 33 previous errors
188
+ error: aborting due to 28 previous errors
229
189
230
190
For more information about this error, try `rustc --explain E0728`.
0 commit comments