fwd/vendor/assert_matches/tests/selective_import2.rs
John Doty 9c435dc440 Vendor dependencies
Let's see how I like this workflow.
2022-12-19 08:38:22 -08:00

9 lines
156 B
Rust

#[macro_use(debug_assert_matches)]
extern crate assert_matches;
#[test]
fn test_assert_succeed() {
let a = 42u32;
debug_assert_matches!(a, 42);
}