about summary refs log tree commit diff
path: root/src/test/run-pass/threads-sendsync/task-comm-17.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/run-pass/threads-sendsync/task-comm-17.rs')
-rw-r--r--src/test/run-pass/threads-sendsync/task-comm-17.rs17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/test/run-pass/threads-sendsync/task-comm-17.rs b/src/test/run-pass/threads-sendsync/task-comm-17.rs
deleted file mode 100644
index 72249787093..00000000000
--- a/src/test/run-pass/threads-sendsync/task-comm-17.rs
+++ /dev/null
@@ -1,17 +0,0 @@
-// run-pass
-#![allow(unused_must_use)]
-// ignore-emscripten no threads support
-// pretty-expanded FIXME #23616
-
-// Issue #922
-
-// This test is specifically about spawning temporary closures.
-
-use std::thread;
-
-fn f() {
-}
-
-pub fn main() {
-    thread::spawn(move|| f() ).join();
-}