rust/tests/target/arrow_in_comments/multiple_arrows.rs

20 lines
376 B
Rust
Raw Normal View History

// rustfmt-version: Two
fn main() {
match a {
_ =>
// comment with =>
{
match b {
// one goes to =>
one => {
println("1");
}
// two goes to =>
two => {
println("2");
}
}
}
}
}