Sign in
rust
/
cargo
/
refs/heads/try
/
.
/
crates
/
rustfix
/
tests
/
everything
/
handle-insert-only.fixed.rs
blob: 604bc85039f9dcc5458c0248c9c1726c43f4c7a9 [
file
] [
log
] [
blame
] [
edit
]
fn
main
()
{
// insert only fix, adds `,` to first match arm
// why doesnt this replace 1 with 1,?
match
&
Some
(
3
)
{
&
None
=>
1
,
&
Some
(
x
)
=>
x
,
};
}