summaryrefslogtreecommitdiffstats
path: root/vendor/tokio/tests/io_async_read.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/tokio/tests/io_async_read.rs')
-rw-r--r--vendor/tokio/tests/io_async_read.rs10
1 files changed, 10 insertions, 0 deletions
diff --git a/vendor/tokio/tests/io_async_read.rs b/vendor/tokio/tests/io_async_read.rs
new file mode 100644
index 000000000..aaeadfa4c
--- /dev/null
+++ b/vendor/tokio/tests/io_async_read.rs
@@ -0,0 +1,10 @@
+#![warn(rust_2018_idioms)]
+#![cfg(feature = "full")]
+
+use tokio::io::AsyncRead;
+
+#[test]
+fn assert_obj_safe() {
+ fn _assert<T>() {}
+ _assert::<Box<dyn AsyncRead>>();
+}