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.
14 lines
347 B
Rust
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";
|
|
*/
|
|
}
|