rust/src/test/ui/matches2021.rs
2021-07-16 11:26:20 -07:00

14 lines
280 B
Rust

// run-pass
// edition:2021
// compile-flags: -Zunstable-options
// regression test for https://github.com/rust-lang/rust/pull/85678
#![feature(assert_matches)]
use std::assert_matches::assert_matches;
fn main() {
assert!(matches!((), ()));
assert_matches!((), ());
}