about summary refs log tree commit diff
path: root/tests/ui/resolve/resolve-inconsistent-names.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/resolve/resolve-inconsistent-names.rs')
-rw-r--r--tests/ui/resolve/resolve-inconsistent-names.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/ui/resolve/resolve-inconsistent-names.rs b/tests/ui/resolve/resolve-inconsistent-names.rs
index 9a40b20346c..96504720e83 100644
--- a/tests/ui/resolve/resolve-inconsistent-names.rs
+++ b/tests/ui/resolve/resolve-inconsistent-names.rs
@@ -10,8 +10,8 @@ pub mod m {
 fn main() {
     let y = 1;
     match y {
-       a | b => {} //~  ERROR variable `a` is not bound in all patterns
-                   //~| ERROR variable `b` is not bound in all patterns
+        a | b => {} //~  ERROR variable `a` is not bound in all patterns
+        //~| ERROR variable `b` is not bound in all patterns
     }
 
     let x = (E::A, E::B);