summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/target/issue-3270/wrap.rs
blob: 7435c5f0866e04e4a774c2dcc1d2281485e6ee47 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// 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";
     */
}