Sign in
rust
/
rust
/
8eb7c58dbb7b32701af113bc58722d0d1fefb1eb
/
.
/
src
/
test
/
rustfix
/
missing-comma-in-match.fixed
blob: d4696ab9547a6a22828a92baed4bc36a381fc83f [
file
]
fn main
()
{
match
&
Some
(
3
)
{
&
None
=>
1
,
&
Some
(
2
)
=>
{
3
}
_
=>
2
};
}