about summary refs log tree commit diff
path: root/tests/ui/async-await/issue-61076.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/async-await/issue-61076.rs')
-rw-r--r--tests/ui/async-await/issue-61076.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ui/async-await/issue-61076.rs b/tests/ui/async-await/issue-61076.rs
index 750fad8393b..3cde5cca3c3 100644
--- a/tests/ui/async-await/issue-61076.rs
+++ b/tests/ui/async-await/issue-61076.rs
@@ -89,7 +89,7 @@ async fn match_() {
     match tuple() { //~ HELP consider `await`ing on the `Future`
         //~^ NOTE this expression has type `impl Future<Output = Tuple>`
         Tuple(_) => {} //~ ERROR mismatched types
-        //~^ NOTE expected opaque type, found struct `Tuple`
+        //~^ NOTE expected opaque type, found `Tuple`
         //~| NOTE expected opaque type `impl Future<Output = Tuple>`
     }
 }