]> git.lizzy.rs Git - rust.git/blobdiff - tests/target/pattern-condense-wildcards.rs
Tidy up and pass tests
[rust.git] / tests / target / pattern-condense-wildcards.rs
index ebf89c582ff07c2f1651f95dbf074517f1ca55ef..39f99d9e123ed1ead3a7ae9e9ea437d526c1fd77 100644 (file)
@@ -1,5 +1,5 @@
 // rustfmt-normalize_comments: true
-// rustfmt-condense_wildcard_suffices: true
+// rustfmt-condense_wildcard_suffixes: true
 
 fn main() {
     match x {
@@ -7,10 +7,6 @@ fn main() {
         Tup(_) => "nah",
         Quad(_, _, x, _) => " also no rewrite",
         Quad(x, ..) => "condense me pls",
-        Weird(x,
-              _,
-              _,
-              // dont condense before
-              ..) => "pls work",
+        Weird(x, _, _, /* dont condense before */ ..) => "pls work",
     }
 }