about summary refs log tree commit diff
path: root/tests/ui/inconsistent_struct_constructor.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/inconsistent_struct_constructor.rs')
-rw-r--r--tests/ui/inconsistent_struct_constructor.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/ui/inconsistent_struct_constructor.rs b/tests/ui/inconsistent_struct_constructor.rs
index ec29bdaf93f..8dd228e72ed 100644
--- a/tests/ui/inconsistent_struct_constructor.rs
+++ b/tests/ui/inconsistent_struct_constructor.rs
@@ -34,7 +34,7 @@ mod without_base {
 
         // Should lint.
         Foo { y, x, z };
-	//~^ inconsistent_struct_constructor
+        //~^ inconsistent_struct_constructor
 
         // Should NOT lint.
         // issue #7069.
@@ -66,7 +66,7 @@ mod with_base {
             x,
             ..Default::default()
         };
-	//~^^^^ inconsistent_struct_constructor
+        //~^^^^ inconsistent_struct_constructor
 
         // Should NOT lint because the order is consistent with the definition.
         Foo {