summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/source/issue-5042/single-line_comment_with_trailing_comma.rs
blob: bd765b7b41f4972d29cdec26c8ae4021e4d92d06 (plain)
1
2
3
4
5
6
7
8
9
fn main() {
    let _ = std::ops::Add::add(10, 20
        // ...,
        );

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