summaryrefslogtreecommitdiffstats
path: root/tests/ui/async-await/issue-68112.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/async-await/issue-68112.stderr')
-rw-r--r--tests/ui/async-await/issue-68112.stderr2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ui/async-await/issue-68112.stderr b/tests/ui/async-await/issue-68112.stderr
index 17b619ebe..1cd8beac2 100644
--- a/tests/ui/async-await/issue-68112.stderr
+++ b/tests/ui/async-await/issue-68112.stderr
@@ -45,7 +45,7 @@ LL | require_send(send_fut);
= help: the trait `Sync` is not implemented for `RefCell<i32>`
= note: if you want to do aliasing and mutation between multiple threads, use `std::sync::RwLock` instead
= note: required for `Arc<RefCell<i32>>` to implement `Send`
-note: required because it's used within this `async fn` body
+note: required because it's used within this `async` fn body
--> $DIR/issue-68112.rs:47:31
|
LL | async fn ready2<T>(t: T) -> T {