Skip to content

Commit

Permalink
Re-bless test outputs
Browse files Browse the repository at this point in the history
  • Loading branch information
compiler-errors committed Nov 20, 2021
1 parent 33c443d commit 1f625b7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/ui/async-await/suggest-missing-await.stderr
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ note: while checking the return type of the `async fn`
|
LL | async fn dummy_result() -> Result<(), ()> {
| ^^^^^^^^^^^^^^ checked the `Output` of this `async fn`, expected opaque type
= note: expected opaque type `impl Future`
= note: expected opaque type `impl Future<Output = Result<(), ()>>`
found enum `Result<_, _>`
help: consider `await`ing on the `Future`
|
Expand All @@ -135,7 +135,7 @@ note: while checking the return type of the `async fn`
|
LL | async fn dummy_result() -> Result<(), ()> {
| ^^^^^^^^^^^^^^ checked the `Output` of this `async fn`, expected opaque type
= note: expected opaque type `impl Future`
= note: expected opaque type `impl Future<Output = Result<(), ()>>`
found enum `Result<_, _>`
help: consider `await`ing on the `Future`
|
Expand Down

0 comments on commit 1f625b7

Please sign in to comment.