This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
zhangyang-zerotierone/zeroidc/vendor/matches/tests/use_star.rs

11 lines
168 B
Rust

//! https://github.com/SimonSapin/rust-std-candidates/issues/22
extern crate matches;
use matches::*;
#[test]
fn test_assert_matches() {
assert_matches!(4, 4)
}