aboutsummaryrefslogtreecommitdiff
path: root/vendor/rayon-core/tests/simple_panic.rs
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/rayon-core/tests/simple_panic.rs')
-rw-r--r--vendor/rayon-core/tests/simple_panic.rs7
1 files changed, 0 insertions, 7 deletions
diff --git a/vendor/rayon-core/tests/simple_panic.rs b/vendor/rayon-core/tests/simple_panic.rs
deleted file mode 100644
index 2564482..0000000
--- a/vendor/rayon-core/tests/simple_panic.rs
+++ /dev/null
@@ -1,7 +0,0 @@
-use rayon_core::join;
-
-#[test]
-#[should_panic(expected = "should panic")]
-fn simple_panic() {
- join(|| {}, || panic!("should panic"));
-}