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.
44 lines
404 B
Rust
44 lines
404 B
Rust
// rustfmt-style_edition: 2024
|
|
|
|
macro_rules! moo1 {
|
|
() => {
|
|
bar! {
|
|
"
|
|
"
|
|
}
|
|
};
|
|
}
|
|
|
|
macro_rules! moo2 {
|
|
() => {
|
|
bar! {
|
|
"
|
|
"
|
|
}
|
|
};
|
|
}
|
|
|
|
macro_rules! moo3 {
|
|
() => {
|
|
42
|
|
/*
|
|
bar! {
|
|
"
|
|
toto
|
|
tata"
|
|
}
|
|
*/
|
|
};
|
|
}
|
|
|
|
macro_rules! moo4 {
|
|
() => {
|
|
bar! {
|
|
"
|
|
foo
|
|
bar
|
|
baz"
|
|
}
|
|
};
|
|
}
|