mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2024-12-25 23:51:06 +00:00
11 lines
168 B
Rust
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)
|
||
|
}
|