Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
macros
/
issue-84429-matches-edition.rs
blob: a1b146e23b6abc0ba7efdba93599520d50e19af4 [
file
] [
log
] [
blame
] [
edit
]
//@ edition:2021
//@ check-pass
//
// Regression test for issue #84429
// Tests that we can properly invoke `matches!` from a 2021-edition crate.
fn
main
()
{
let
_b
=
matches
!(
b
'3'
,
b
'0'
..=
b
'9'
);
}