]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/issues/issue-17740.stderr
Auto merge of #57108 - Mark-Simulacrum:license-remove, r=pietroalbini
[rust.git] / src / test / ui / issues / issue-17740.stderr
index e4f5485953c68a54d222bd2ccd04161be1cb093c..c7a76c558ee8b3a7777a7a3a27e14f2b22f740ad 100644 (file)
@@ -1,13 +1,13 @@
 error[E0308]: mismatched method receiver
-  --> $DIR/issue-17740.rs:16:18
+  --> $DIR/issue-17740.rs:6:18
    |
 LL |     fn bar(self: &mut Foo) {
    |                  ^^^^^^^^ lifetime mismatch
    |
    = note: expected type `Foo<'a>`
               found type `Foo<'_>`
-note: the anonymous lifetime #2 defined on the method body at 16:5...
-  --> $DIR/issue-17740.rs:16:5
+note: the anonymous lifetime #2 defined on the method body at 6:5...
+  --> $DIR/issue-17740.rs:6:5
    |
 LL | /     fn bar(self: &mut Foo) {
 LL | |     //~^ mismatched method receiver
@@ -17,27 +17,27 @@ LL | |     //~| found type `Foo<'_>`
 LL | |     //~| lifetime mismatch
 LL | |     }
    | |_____^
-note: ...does not necessarily outlive the lifetime 'a as defined on the impl at 15:7
-  --> $DIR/issue-17740.rs:15:7
+note: ...does not necessarily outlive the lifetime 'a as defined on the impl at 5:7
+  --> $DIR/issue-17740.rs:5:7
    |
 LL | impl <'a> Foo<'a>{
    |       ^^
 
 error[E0308]: mismatched method receiver
-  --> $DIR/issue-17740.rs:16:18
+  --> $DIR/issue-17740.rs:6:18
    |
 LL |     fn bar(self: &mut Foo) {
    |                  ^^^^^^^^ lifetime mismatch
    |
    = note: expected type `Foo<'a>`
               found type `Foo<'_>`
-note: the lifetime 'a as defined on the impl at 15:7...
-  --> $DIR/issue-17740.rs:15:7
+note: the lifetime 'a as defined on the impl at 5:7...
+  --> $DIR/issue-17740.rs:5:7
    |
 LL | impl <'a> Foo<'a>{
    |       ^^
-note: ...does not necessarily outlive the anonymous lifetime #2 defined on the method body at 16:5
-  --> $DIR/issue-17740.rs:16:5
+note: ...does not necessarily outlive the anonymous lifetime #2 defined on the method body at 6:5
+  --> $DIR/issue-17740.rs:6:5
    |
 LL | /     fn bar(self: &mut Foo) {
 LL | |     //~^ mismatched method receiver