]> git.lizzy.rs Git - rust.git/blob - src/tools/rustfmt/tests/target/paren.rs
Merge commit '3c7e7dbc1583a0b06df5bd7623dd354a4debd23d' into clippyup
[rust.git] / src / tools / rustfmt / tests / target / paren.rs
1 fn main() {
2     let x = (1);
3     let y = (/* comment */(2));
4     let z = ((3)/* comment */);
5     let a = (4/* comment */);
6 }