summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/source/issue-5042/multi-line_comment_without_trailing_comma.rs
blob: b8a824b34b796e32d611c4b024385f5e2959a740 (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
fn main() {
    // 5042 deals with trailing commas, not the indentation issue of these comments
    // When a future PR fixes the inentation issues these test can be updated
    let _ = std::ops::Add::add(10, 20
        // ...
        // ...
        );

    let _ = std::ops::Add::add(10, 20
        /* ... */
        // ...
        );

    let _ = std::ops::Add::add(10, 20
        // ...
        // ...
        );

    let _ = std::ops::Add::add(10, 20
        // ...
        /* ...
        */
        );
}