summaryrefslogtreecommitdiffstats
path: root/src/test/pretty/async.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/pretty/async.rs')
-rw-r--r--src/test/pretty/async.rs9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/test/pretty/async.rs b/src/test/pretty/async.rs
deleted file mode 100644
index 573e79bff..000000000
--- a/src/test/pretty/async.rs
+++ /dev/null
@@ -1,9 +0,0 @@
-// pp-exact
-// pretty-compare-only
-// edition:2021
-
-async fn f() {
- let first = async { 1 };
- let second = async move { 2 };
- join(first, second).await
-}