summaryrefslogtreecommitdiffstats
path: root/src/tools/rustfmt/tests/source/paren.rs
blob: 04e5ab7a5549712a5384fb2c94952a7f6a60d9a9 (plain)
1
2
3
4
5
6
fn main() {
    let x = (((1)));
    let y = (/* comment */((2)));
    let z = (((3)/* comment */));
    let a = (((4/* comment */)));
}