Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
consts
/
const-match-pattern-arm.rs
blob: 27af3cf09156bf2edee5be6cf57f7ee3645463fe [
file
] [
log
] [
blame
] [
edit
]
//@ check-pass
const
_
:
bool
=
match
Some
(
true
)
{
Some
(
value
)
=>
true
,
_
=>
false
};
const
_
:
bool
=
{
match
Some
(
true
)
{
Some
(
value
)
=>
true
,
_
=>
false
}
};
fn
main
()
{}