]> git.lizzy.rs Git - rust.git/blobdiff - src/test/ui/nll/issue-52534.stderr
Added multiple parameter closure test.
[rust.git] / src / test / ui / nll / issue-52534.stderr
index 032aa218d4a8f9746282e9eb6d4136f52c1988d0..873f17d8deb1f6daecf503b1dcb32a1b327748b5 100644 (file)
@@ -1,5 +1,5 @@
 error[E0597]: `x` does not live long enough
-  --> $DIR/issue-52534.rs:19:14
+  --> $DIR/issue-52534.rs:22:14
    |
 LL |     foo(|a| &x)
    |           -  ^ `x` would have to be valid for `'0`
@@ -8,6 +8,16 @@ LL |     foo(|a| &x)
 LL | }
    | - ...but `x` is only valid for the duration of the `bar` function, so it is dropped here while still borrowed
 
-error: aborting due to previous error
+error[E0597]: `y` does not live long enough
+  --> $DIR/issue-52534.rs:27:26
+   |
+LL |     baz(|first, second| &y)
+   |               -          ^ `y` would have to be valid for `'0`
+   |               |
+   |               has type `&'0 u32`
+LL | }
+   | - ...but `y` is only valid for the duration of the `foobar` function, so it is dropped here while still borrowed
+
+error: aborting due to 2 previous errors
 
 For more information about this error, try `rustc --explain E0597`.