Sign in
rust
/
rustfmt
/
bedef9bd13c2f432584064b51a0d619b7974eb08
/
.
/
tests
/
source
/
arrow_in_comments
/
multiple_arrows.rs
blob: 98ef919450f88f4c80fe3440153908562b683413 [
file
] [
log
] [
blame
]
// rustfmt-style_edition: 2024
fn
main
()
{
match
a
{
_
=>
// comment with =>
match
b
{
// one goes to =>
one
=>
{
println
(
"1"
);
}
// two goes to =>
two
=>
{
println
(
"2"
);
}
}
}
}