mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
14 lines
245 B
Rust
14 lines
245 B
Rust
//@ run-pass
|
|
//@ edition:2021
|
|
|
|
// 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!((), ());
|
|
}
|