about summary refs log tree commit diff
path: root/tests/ui/async-await/field-assign.rs
diff options
context:
space:
mode:
author许杰友 Jieyou Xu (Joe) <jieyouxu@outlook.com>2023-06-12 16:55:36 +0800
committer许杰友 Jieyou Xu (Joe) <jieyouxu@outlook.com>2023-06-12 20:24:48 +0800
commitedafbaffb26d8be00f6dd8ad0dbaa57f1caf1610 (patch)
tree37b2fdaa33085fc61643e0d52ad366031e97346f /tests/ui/async-await/field-assign.rs
parent37998ab508d5d9fa0d465d7b535dc673087dda8f (diff)
downloadrust-edafbaffb26d8be00f6dd8ad0dbaa57f1caf1610.tar.gz
rust-edafbaffb26d8be00f6dd8ad0dbaa57f1caf1610.zip
Adjust UI tests for `unit_bindings`
- Either explicitly annotate `let x: () = expr;` where `x` has unit
  type, or remove the unit binding to leave only `expr;` instead.
- Fix disjoint-capture-in-same-closure test
Diffstat (limited to 'tests/ui/async-await/field-assign.rs')
-rw-r--r--tests/ui/async-await/field-assign.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ui/async-await/field-assign.rs b/tests/ui/async-await/field-assign.rs
index dd0e3f11ccc..b79d2af066a 100644
--- a/tests/ui/async-await/field-assign.rs
+++ b/tests/ui/async-await/field-assign.rs
@@ -21,7 +21,7 @@ impl Agent {
         let mut info = self.info_result.clone();
         info.node = Some("bar".into());
         let element = parse_info(info);
-        let _ = send_element(element).await;
+        send_element(element).await;
     }
 }