about summary refs log tree commit diff
path: root/src/test/ui/threads-sendsync/send-resource.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/threads-sendsync/send-resource.rs')
-rw-r--r--src/test/ui/threads-sendsync/send-resource.rs39
1 files changed, 0 insertions, 39 deletions
diff --git a/src/test/ui/threads-sendsync/send-resource.rs b/src/test/ui/threads-sendsync/send-resource.rs
deleted file mode 100644
index 023a84d6b6e..00000000000
--- a/src/test/ui/threads-sendsync/send-resource.rs
+++ /dev/null
@@ -1,39 +0,0 @@
-// run-pass
-#![allow(unused_must_use)]
-#![allow(dead_code)]
-#![allow(non_camel_case_types)]
-
-// pretty-expanded FIXME #23616
-// ignore-emscripten no threads support
-
-use std::thread;
-use std::sync::mpsc::channel;
-
-struct test {
-  f: isize,
-}
-
-impl Drop for test {
-    fn drop(&mut self) {}
-}
-
-fn test(f: isize) -> test {
-    test {
-        f: f
-    }
-}
-
-pub fn main() {
-    let (tx, rx) = channel();
-
-    let t = thread::spawn(move|| {
-        let (tx2, rx2) = channel();
-        tx.send(tx2).unwrap();
-
-        let _r = rx2.recv().unwrap();
-    });
-
-    rx.recv().unwrap().send(test(42)).unwrap();
-
-    t.join();
-}