Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
src
/
tools
/
rustfmt
/
tests
/
source
/
match-flattening.rs
blob: 935ece53b83bc4277db0c5fe92863e8790c9bd99 [
file
] [
log
] [
blame
] [
edit
]
fn
main
()
{
match
option
{
None
=>
if
condition
{
true
}
else
{
false
},
}
}
fn
main
()
{
match
option
{
None
=>
{
if
condition
{
true
}
else
{
false
}
}
}
}