about summary refs log tree commit diff
path: root/src/test/ui/threads-sendsync/task-comm-1.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/threads-sendsync/task-comm-1.rs')
-rw-r--r--src/test/ui/threads-sendsync/task-comm-1.rs14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/test/ui/threads-sendsync/task-comm-1.rs b/src/test/ui/threads-sendsync/task-comm-1.rs
deleted file mode 100644
index 68ca62909bf..00000000000
--- a/src/test/ui/threads-sendsync/task-comm-1.rs
+++ /dev/null
@@ -1,14 +0,0 @@
-// run-pass
-#![allow(unused_must_use)]
-// ignore-emscripten no threads support
-
-use std::thread;
-
-pub fn main() { test00(); }
-
-fn start() { println!("Started / Finished task."); }
-
-fn test00() {
-    thread::spawn(move|| start() ).join();
-    println!("Completing.");
-}