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