Caleb Cartwright aa8a53f687 refactor: switch idempotence/system tests to style_edition
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.
2024-07-28 19:37:36 -05:00

14 lines
347 B
Rust

// rustfmt-wrap_comments: true
// rustfmt-style_edition: 2024
// check that a line below max_width does not get over the limit when wrapping
// it in a block comment
fn func() {
let x = 42;
/*
let something = "one line line line line line line line line line line line line line
two lines
three lines";
*/
}