]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/issues/issue-30438-b.stderr
Auto merge of #57108 - Mark-Simulacrum:license-remove, r=pietroalbini
[rust.git] / src / test / ui / issues / issue-30438-b.stderr
index 651ff9f2ae11d3dc4cf3b3b7dca4f84682506da0..b99801dad81d5d463446acd47b5117b0037e2659 100644 (file)
@@ -1,5 +1,5 @@
 error[E0597]: borrowed value does not live long enough
-  --> $DIR/issue-30438-b.rs:23:10
+  --> $DIR/issue-30438-b.rs:13:10
    |
 LL |         &Test { s: &self.s}
    |          ^^^^^^^^^^^^^^^^^^ temporary value does not live long enough
@@ -7,8 +7,8 @@ LL |         //~^ ERROR: borrowed value does not live long enough
 LL |     }
    |     - temporary value only lives until here
    |
-note: borrowed value must be valid for the anonymous lifetime #1 defined on the method body at 22:5...
-  --> $DIR/issue-30438-b.rs:22:5
+note: borrowed value must be valid for the anonymous lifetime #1 defined on the method body at 12:5...
+  --> $DIR/issue-30438-b.rs:12:5
    |
 LL | /     fn index(&self, _: usize) -> &Self::Output {
 LL | |         &Test { s: &self.s}