Sign in
rust
/
rust
/
d7e8f9fc7af4aa4cd65140afaebe48dd1e90e708
/
.
/
tests
/
ui
/
stdlib-unit-tests
/
matches2021.rs
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
!((),
());
}