9580747a76
* Find arrow with find_last_uncommented * Add version gate for arrow finding fix
15 lines
282 B
Rust
15 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"); }
|
|
}
|
|
}
|
|
}
|