summaryrefslogtreecommitdiffstats
path: root/tests/pretty/issue-73626.rs
blob: a002f09be3b4eb89e2e498215d95eceb52e0872b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
fn main(/*
    ---
*/) {
    let x /* this is one line */ = 3;

    let x /*
           * this
           * is
           * multiple
           * lines
           */ = 3;

    let x = /*
           * this
           * is
           * multiple
           * lines
           * after
           * the
           * =
           */ 3;

    let x /*
           * this
           * is
           * multiple
           * lines
           * including
           * a

           * blank
           * line
           */ = 3;
}