about summary refs log tree commit diff
path: root/tests/ui/async-await/async-error-span.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/async-await/async-error-span.rs')
-rw-r--r--tests/ui/async-await/async-error-span.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ui/async-await/async-error-span.rs b/tests/ui/async-await/async-error-span.rs
index 86d459bf084..c8127df625e 100644
--- a/tests/ui/async-await/async-error-span.rs
+++ b/tests/ui/async-await/async-error-span.rs
@@ -10,7 +10,7 @@ fn get_future() -> impl Future<Output = ()> {
 }
 
 async fn foo() {
-    let a; //~ ERROR type inside `async fn` body must be known in this context
+    let a; //~ ERROR type annotations needed
     get_future().await;
 }