about summary refs log tree commit diff
path: root/tests/ui/redundant_guards.fixed
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/redundant_guards.fixed')
-rw-r--r--tests/ui/redundant_guards.fixed2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ui/redundant_guards.fixed b/tests/ui/redundant_guards.fixed
index c7e6f44ad83..9dd9d341db2 100644
--- a/tests/ui/redundant_guards.fixed
+++ b/tests/ui/redundant_guards.fixed
@@ -52,7 +52,7 @@ fn main() {
         Some(Some(1)) if true => ..,
         //~^ redundant_guards
         Some(Some(1)) => {
-        //~^ redundant_guards
+            //~^ redundant_guards
             println!("a");
             ..
         },