mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-12 15:04:03 +00:00
13 lines
238 B
Rust
13 lines
238 B
Rust
![]() |
// run-pass
|
||
|
// edition:2021
|
||
|
// compile-flags: -Zunstable-options
|
||
|
|
||
|
// regression test for https://github.com/rust-lang/rust/pull/85678
|
||
|
|
||
|
#![feature(assert_matches)]
|
||
|
|
||
|
fn main() {
|
||
|
assert!(matches!((), ()));
|
||
|
assert_matches!((), ());
|
||
|
}
|