rust/tests/target/issue-3270/wrap.rs
2019-01-16 23:06:28 +01:00

14 lines
340 B
Rust

// rustfmt-wrap_comments: true
// rustfmt-version: Two
// 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";
*/
}