summaryrefslogtreecommitdiffstats
path: root/src/test/ui/threads-sendsync/std-sync-right-kind-impls.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/threads-sendsync/std-sync-right-kind-impls.rs')
-rw-r--r--src/test/ui/threads-sendsync/std-sync-right-kind-impls.rs16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/test/ui/threads-sendsync/std-sync-right-kind-impls.rs b/src/test/ui/threads-sendsync/std-sync-right-kind-impls.rs
new file mode 100644
index 000000000..bc64c8162
--- /dev/null
+++ b/src/test/ui/threads-sendsync/std-sync-right-kind-impls.rs
@@ -0,0 +1,16 @@
+// run-pass
+// pretty-expanded FIXME #23616
+
+use std::sync;
+
+fn assert_both<T: Sync + Send>() {}
+
+fn main() {
+ assert_both::<sync::Mutex<()>>();
+ assert_both::<sync::Condvar>();
+ assert_both::<sync::RwLock<()>>();
+ assert_both::<sync::Barrier>();
+ assert_both::<sync::Arc<()>>();
+ assert_both::<sync::Weak<()>>();
+ assert_both::<sync::Once>();
+}