Sign in
fuchsia
/
third_party
/
rust
/
8ae423e5e8db47b8233ad657b8d84247f94de179
/
.
/
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
!((),
());
}