]> git.lizzy.rs Git - rust.git/blobdiff - tests/target/item-brace-style-always-next-line.rs
Tidy up and pass tests
[rust.git] / tests / target / item-brace-style-always-next-line.rs
index 48dcebc0263e112b12a5cae16b47bb6a0fc8ad93..531ac59868314054c6ef5d36707f7f08f64613b7 100644 (file)
@@ -1,6 +1,7 @@
-// rustfmt-item_brace_style: AlwaysNextLine
+// rustfmt-brace_style: AlwaysNextLine
 
-mod M {
+mod M
+{
     enum A
     {
         A,
@@ -17,21 +18,25 @@ enum C {}
     struct D {}
 
     enum A<T>
-        where T: Copy
+    where
+        T: Copy,
     {
         A,
     }
 
     struct B<T>
-        where T: Copy
+    where
+        T: Copy,
     {
         b: i32,
     }
 
     // For empty enums and structs, the brace remains on the same line.
     enum C<T>
-        where T: Copy {}
+    where
+        T: Copy, {}
 
     struct D<T>
-        where T: Copy {}
+    where
+        T: Copy, {}
 }