aa8a53f687
Updates all the various files utilized in the system and idempotence tests to directly use the corresponding 'style_edition' configuration as opposed to keeping the original 'version' values and relying on the mapping.
15 lines
289 B
Rust
15 lines
289 B
Rust
// rustfmt-style_edition: 2024
|
|
fn main() {
|
|
match a {
|
|
_ => // comment with =>
|
|
match b {
|
|
// one goes to =>
|
|
one => {
|
|
println("1");
|
|
}
|
|
// two goes to =>
|
|
two => { println("2"); }
|
|
}
|
|
}
|
|
}
|