summaryrefslogtreecommitdiffstats
path: root/vendor/matches/tests/use_star.rs
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--vendor/matches/tests/use_star.rs10
1 files changed, 0 insertions, 10 deletions
diff --git a/vendor/matches/tests/use_star.rs b/vendor/matches/tests/use_star.rs
deleted file mode 100644
index 58a670b93..000000000
--- a/vendor/matches/tests/use_star.rs
+++ /dev/null
@@ -1,10 +0,0 @@
-//! https://github.com/SimonSapin/rust-std-candidates/issues/22
-
-extern crate matches;
-
-use matches::*;
-
-#[test]
-fn test_assert_matches() {
- assert_matches!(4, 4)
-}