diff options
Diffstat (limited to 'src/test/ui/fmt/format-with-yield-point.rs')
| -rw-r--r-- | src/test/ui/fmt/format-with-yield-point.rs | 33 |
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()); -} |
