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.
21 lines
179 B
Rust
21 lines
179 B
Rust
// rustfmt-style_edition: 2024
|
|
|
|
pub fn main() {
|
|
let a = Some(12);
|
|
match a {
|
|
#![attr1]
|
|
#![attr2]
|
|
#![attr3]
|
|
_ => None,
|
|
}
|
|
|
|
{
|
|
match a {
|
|
#![attr1]
|
|
#![attr2]
|
|
#![attr3]
|
|
_ => None,
|
|
}
|
|
}
|
|
}
|