rust/tests/source/arrow_in_comments/multiple_arrows.rs
2024-06-22 15:33:45 -05:00

14 lines
282 B
Rust

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