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

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