We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6b574b commit 06f5d55Copy full SHA for 06f5d55
tests/source/paren.rs
@@ -0,0 +1,8 @@
1
+// Remove nested parens.
2
+
3
+fn main() {
4
+ let x = (((1)));
5
+ let y = (/* comment */((2)));
6
+ let z = (((3)/* comment */));
7
+ let a = (((4/* comment */)));
8
+}
tests/target/paren.rs
+ let x = (1);
+ let y = (/* comment */(2));
+ let z = ((3)/* comment */);
+ let a = (4/* comment */);
0 commit comments