We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 772d51f commit a9f14c1Copy full SHA for a9f14c1
src/test/pretty/async.rs
@@ -0,0 +1,9 @@
1
+// pp-exact
2
+// pretty-compare-only
3
+// edition:2021
4
+
5
+async fn f() {
6
+ let first = async { 1 };
7
+ let second = async move { 2 };
8
+ join(first, second).await
9
+}
0 commit comments