about summary refs log tree commit diff
path: root/src/test/ui/fmt/format-with-yield-point.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/fmt/format-with-yield-point.rs')
-rw-r--r--src/test/ui/fmt/format-with-yield-point.rs33
1 files changed, 0 insertions, 33 deletions
diff --git a/src/test/ui/fmt/format-with-yield-point.rs b/src/test/ui/fmt/format-with-yield-point.rs
deleted file mode 100644
index e484074cc9a..00000000000
--- a/src/test/ui/fmt/format-with-yield-point.rs
+++ /dev/null
@@ -1,33 +0,0 @@
-// check-pass
-// edition:2021
-
-macro_rules! m {
-    () => {
-        async {}.await
-    };
-}
-
-async fn with_await() {
-    println!("{} {:?}", "", async {}.await);
-}
-
-async fn with_macro_call_expr() {
-    println!("{} {:?}", "", m!());
-}
-
-async fn with_macro_call_stmt_semi() {
-    println!("{} {:?}", "", { m!(); });
-}
-
-async fn with_macro_call_stmt_braced() {
-    println!("{} {:?}", "", { m!{} });
-}
-
-fn assert_send(_: impl Send) {}
-
-fn main() {
-    assert_send(with_await());
-    assert_send(with_macro_call_expr());
-    assert_send(with_macro_call_stmt_semi());
-    assert_send(with_macro_call_stmt_braced());
-}