]> git.lizzy.rs Git - rust.git/commitdiff
Fix tidy
authorJared Roesch <roeschinc@gmail.com>
Tue, 7 Jul 2015 23:06:35 +0000 (16:06 -0700)
committerJared Roesch <jroesch@MacBook.home>
Sun, 26 Jul 2015 02:57:57 +0000 (19:57 -0700)
src/librustc/middle/infer/mod.rs

index 5339464503b3e3b21435fd0d35c89176440878ed..59ca795e5f7511eba978e0af45106c98d1456630 100644 (file)
@@ -1328,9 +1328,10 @@ pub fn report_conflicting_default_types(&self,
             })
         };
 
-        self.report_and_explain_type_error(trace, &ty::type_err::terr_ty_param_default_mismatch(ty::expected_found {
-            expected: expected,
-            found: actual
+        self.report_and_explain_type_error(trace,
+            &ty::type_err::terr_ty_param_default_mismatch(ty::expected_found {
+                expected: expected,
+                found: actual
         }));
     }