summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/target/issue-5042/multi-line_comment_without_trailing_comma.rs
blob: 30d174664c9cfbf5fa6579d314a5ef72caea3abc (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, // ...
           /* ...
            */
    );
}