]> git.lizzy.rs Git - rust.git/blob - tests/source/paren.rs
Add One option to group_imports (#4966)
[rust.git] / tests / source / 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 }