Skip to content

Commit 1f625b7

Browse files
Re-bless test outputs
1 parent 33c443d commit 1f625b7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/ui/async-await/suggest-missing-await.stderr

+2-2
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ note: while checking the return type of the `async fn`
117117
|
118118
LL | async fn dummy_result() -> Result<(), ()> {
119119
| ^^^^^^^^^^^^^^ checked the `Output` of this `async fn`, expected opaque type
120-
= note: expected opaque type `impl Future`
120+
= note: expected opaque type `impl Future<Output = Result<(), ()>>`
121121
found enum `Result<_, _>`
122122
help: consider `await`ing on the `Future`
123123
|
@@ -135,7 +135,7 @@ note: while checking the return type of the `async fn`
135135
|
136136
LL | async fn dummy_result() -> Result<(), ()> {
137137
| ^^^^^^^^^^^^^^ checked the `Output` of this `async fn`, expected opaque type
138-
= note: expected opaque type `impl Future`
138+
= note: expected opaque type `impl Future<Output = Result<(), ()>>`
139139
found enum `Result<_, _>`
140140
help: consider `await`ing on the `Future`
141141
|

0 commit comments

Comments
 (0)