mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
14 lines
243 B
Rust
14 lines
243 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!((), ());
|
|
}
|