]> git.lizzy.rs Git - rust.git/commitdiff
Remove the error check that I think is redundant, and change the test error messages...
authorMichael Hewson <michael@michaelhewson.ca>
Wed, 8 Nov 2017 13:31:08 +0000 (08:31 -0500)
committerMichael Hewson <michael@michaelhewson.ca>
Wed, 8 Nov 2017 13:31:08 +0000 (08:31 -0500)
src/librustc_typeck/check/wfcheck.rs
src/test/compile-fail/explicit-self-lifetime-mismatch.rs
src/test/compile-fail/issue-17740.rs
src/test/compile-fail/ufcs-explicit-self-bad.rs

index 9366c33bffb9c41adb2422c42c562aa71620d410..71f19914a2c1548c877b738c65b2735e32961e0b 100644 (file)
@@ -516,28 +516,6 @@ fn check_method_receiver<'fcx, 'tcx>(&mut self,
                 .help("consider changing to `self`, `&self`, `&mut self`, or `self: Box<Self>`")
                 .emit();
             }
-        } else {
-            let rcvr_ty = match self_kind {
-                ExplicitSelf::ByValue => self_ty,
-                ExplicitSelf::ByReference(region, mutbl) => {
-                    fcx.tcx.mk_ref(region, ty::TypeAndMut {
-                        ty: self_ty,
-                        mutbl,
-                    })
-                }
-                ExplicitSelf::ByBox => fcx.tcx.mk_box(self_ty),
-                ExplicitSelf::Other => unreachable!(),
-            };
-            let rcvr_ty = fcx.normalize_associated_types_in(span, &rcvr_ty);
-            let rcvr_ty = fcx.liberate_late_bound_regions(method.def_id,
-                                                        &ty::Binder(rcvr_ty));
-
-            debug!("check_method_receiver: receiver ty = {:?}", rcvr_ty);
-
-            let cause = fcx.cause(span, ObligationCauseCode::MethodReceiver);
-            if let Some(mut err) = fcx.demand_eqtype_with_origin(&cause, rcvr_ty, self_arg_ty) {
-                err.emit();
-            }
         }
     }
 
index eac134ff3cc7d6b287cf83a34ca4c67862897d20..0c3ee1739a312f4720fd670e79831b118d61a697 100644 (file)
@@ -1,3 +1,5 @@
+//~  ERROR mismatched types
+//~| ERROR mismatched types
 // Copyright 2014 The Rust Project Developers. See the COPYRIGHT
 // file at the top-level directory of this distribution and at
 // http://rust-lang.org/COPYRIGHT.
@@ -14,17 +16,7 @@ struct Foo<'a,'b> {
 }
 
 impl<'a,'b> Foo<'a,'b> {
-    fn bar(self:
-           Foo<'b,'a>
-    //~^ ERROR mismatched method receiver
-    //~| expected type `Foo<'a, 'b>`
-    //~| found type `Foo<'b, 'a>`
-    //~| lifetime mismatch
-    //~| ERROR mismatched method receiver
-    //~| expected type `Foo<'a, 'b>`
-    //~| found type `Foo<'b, 'a>`
-    //~| lifetime mismatch
-           ) {}
+    fn bar(self: Foo<'b,'a>) {}
 }
 
 fn main() {}
index 664d62e87ae61cf2f61a5f45d308275ce6f60856..99a7d39ce8456ee1ca2fb399ab2f5f0110ae2039 100644 (file)
@@ -1,3 +1,5 @@
+//~  ERROR mismatched types
+//~| ERROR mismatched types
 // Copyright 2014 The Rust Project Developers. See the COPYRIGHT
 // file at the top-level directory of this distribution and at
 // http://rust-lang.org/COPYRIGHT.
@@ -14,14 +16,6 @@ struct Foo<'a> {
 
 impl <'a> Foo<'a>{
     fn bar(self: &mut Foo) {
-    //~^ mismatched method receiver
-    //~| expected type `&mut Foo<'a>`
-    //~| found type `&mut Foo<'_>`
-    //~| lifetime mismatch
-    //~| mismatched method receiver
-    //~| expected type `&mut Foo<'a>`
-    //~| found type `&mut Foo<'_>`
-    //~| lifetime mismatch
     }
 }
 
index 6fc2828f669d6a904aae29bb9d24e8e711487954..553fd79f5e50b535a07e2b55e268bb1e785ac409 100644 (file)
@@ -1,3 +1,7 @@
+//~  ERROR mismatched types
+//~| ERROR mismatched types
+//~| ERROR mismatched types
+//~| ERROR mismatched types
 // Copyright 2012 The Rust Project Developers. See the COPYRIGHT
 // file at the top-level directory of this distribution and at
 // http://rust-lang.org/COPYRIGHT.
@@ -47,17 +51,8 @@ trait SomeTrait {
 
 impl<'a, T> SomeTrait for &'a Bar<T> {
     fn dummy1(self: &&'a Bar<T>) { }
-    fn dummy2(self: &Bar<T>) {} //~ ERROR mismatched method receiver
-    //~^ ERROR mismatched method receiver
+    fn dummy2(self: &Bar<T>) {}
     fn dummy3(self: &&Bar<T>) {}
-    //~^ ERROR mismatched method receiver
-    //~| expected type `&&'a Bar<T>`
-    //~| found type `&&Bar<T>`
-    //~| lifetime mismatch
-    //~| ERROR mismatched method receiver
-    //~| expected type `&&'a Bar<T>`
-    //~| found type `&&Bar<T>`
-    //~| lifetime mismatch
 }
 
 fn main() {