aboutsummaryrefslogtreecommitdiff
path: root/tests/future_send.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/future_send.rs')
-rw-r--r--tests/future_send.rs22
1 files changed, 22 insertions, 0 deletions
diff --git a/tests/future_send.rs b/tests/future_send.rs
new file mode 100644
index 0000000..5e5f9f1
--- /dev/null
+++ b/tests/future_send.rs
@@ -0,0 +1,22 @@
+// These tests reproduce the following issues:
+// - https://github.com/tokio-rs/tracing/issues/1487
+// - https://github.com/tokio-rs/tracing/issues/1793
+
+use core::future::{self, Future};
+#[test]
+fn async_fn_is_send() {
+ async fn some_async_fn() {
+ tracing::info!("{}", future::ready("test").await);
+ }
+
+ assert_send(some_async_fn())
+}
+
+#[test]
+fn async_block_is_send() {
+ assert_send(async {
+ tracing::info!("{}", future::ready("test").await);
+ })
+}
+
+fn assert_send<F: Future + Send>(_f: F) {}