summaryrefslogtreecommitdiffstats
path: root/tests/ui/async-await/issue-98634.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/async-await/issue-98634.stderr')
-rw-r--r--tests/ui/async-await/issue-98634.stderr4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/ui/async-await/issue-98634.stderr b/tests/ui/async-await/issue-98634.stderr
index 5b7f18a98..574904cea 100644
--- a/tests/ui/async-await/issue-98634.stderr
+++ b/tests/ui/async-await/issue-98634.stderr
@@ -23,10 +23,10 @@ LL | pub struct StructAsync<F: Fn() -> Pin<Box<dyn Future<Output = ()>>>> {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ required by this bound in `StructAsync`
error[E0271]: expected `callback` to be a fn item that returns `Pin<Box<dyn Future<Output = ()>>>`, but it returns `impl Future<Output = ()>`
- --> $DIR/issue-98634.rs:45:33
+ --> $DIR/issue-98634.rs:45:34
|
LL | StructAsync { callback }.await;
- | ^^^^^^ expected `Pin<Box<dyn Future<Output = ()>>>`, found future
+ | ^^^^^ expected `Pin<Box<dyn Future<Output = ()>>>`, found future
|
note: required by a bound in `StructAsync`
--> $DIR/issue-98634.rs:9:35