about summary refs log tree commit diff
path: root/tests/ui/inconsistent_struct_constructor.fixed
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/inconsistent_struct_constructor.fixed')
-rw-r--r--tests/ui/inconsistent_struct_constructor.fixed6
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/ui/inconsistent_struct_constructor.fixed b/tests/ui/inconsistent_struct_constructor.fixed
index 4c324587c96..67bd3e4d279 100644
--- a/tests/ui/inconsistent_struct_constructor.fixed
+++ b/tests/ui/inconsistent_struct_constructor.fixed
@@ -60,7 +60,11 @@ mod with_base {
         let z = 1;
 
         // Should lint.
-        Foo { x, z, ..Default::default() };
+        Foo {
+            x,
+            z,
+            ..Default::default()
+        };
 
         // Should NOT lint because the order is consistent with the definition.
         Foo {