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
329 B
Rust
15 lines
329 B
Rust
// rustfmt-style_edition: 2024
|
|
pub enum TestEnum {
|
|
a,
|
|
b,
|
|
}
|
|
|
|
fn the_test(input: TestEnum) {
|
|
match input {
|
|
TestEnum::a => String::from("aaa"),
|
|
TestEnum::b => String::from(
|
|
"this is a very very very very very very very very very very very very very very very ong string",
|
|
),
|
|
};
|
|
}
|