blob: 0958e82f43e42b10ebee71a3637b4a3966ee6f94 [file]
//@ run-pass
//@ edition:2021
// regression test for https://github.com/rust-lang/rust/pull/85678
use std::assert_matches;
fn main() {
assert!(matches!((), ()));
assert_matches!((), ());
}