about summary refs log tree commit diff
path: root/tests/ui/async-await/issue-64130-4-async-move.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/async-await/issue-64130-4-async-move.rs')
-rw-r--r--tests/ui/async-await/issue-64130-4-async-move.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ui/async-await/issue-64130-4-async-move.rs b/tests/ui/async-await/issue-64130-4-async-move.rs
index bcb297aaa02..5d68a808b17 100644
--- a/tests/ui/async-await/issue-64130-4-async-move.rs
+++ b/tests/ui/async-await/issue-64130-4-async-move.rs
@@ -24,7 +24,7 @@ pub fn foo() -> impl Future + Send {
     async move {
         match client.status() {
             200 => {
-                let _x = get().await;
+                get().await;
             }
             _ => (),
         }