]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/async-await/suggest-missing-await.rs
Rollup merge of #103570 - lukas-code:stabilize-ilog, r=scottmcm
[rust.git] / src / test / ui / async-await / suggest-missing-await.rs
index c7c5b51e7334b87b27e40534c5541d9e7044b960..796f82e779c2b901b8b2eacbac795cb47de33da4 100644 (file)
@@ -21,8 +21,8 @@ async fn dummy() {}
 async fn suggest_await_in_async_fn_return() {
     dummy()
     //~^ ERROR mismatched types [E0308]
-    //~| HELP consider using a semicolon here
     //~| HELP consider `await`ing on the `Future`
+    //~| HELP consider using a semicolon here
     //~| SUGGESTION .await
 }