]> git.proxmox.com Git - rustc.git/blobdiff - src/test/ui/impl-trait/multiple-lifetimes/error-handling-2.stderr
Update unsuspicious file list
[rustc.git] / src / test / ui / impl-trait / multiple-lifetimes / error-handling-2.stderr
index 59105f11805cd0c27de0c55025cf579a87873da1..90875708094049b19c3d45e6aa547e81a8c418a1 100644 (file)
@@ -1,14 +1,11 @@
-error[E0700]: hidden type for `impl Trait` captures lifetime that does not appear in bounds
-  --> $DIR/error-handling-2.rs:13:60
+error[E0700]: hidden type for `E<'b, 'c>` captures lifetime that does not appear in bounds
+  --> $DIR/error-handling-2.rs:22:5
    |
 LL | fn foo<'a: 'b, 'b, 'c>(x: &'static i32, mut y: &'a i32) -> E<'b, 'c> {
-   |                                                            ^^^^^^^^^
-   |
-note: hidden type `*mut &'a i32` captures the lifetime `'a` as defined on the function body at 13:8
-  --> $DIR/error-handling-2.rs:13:8
-   |
-LL | fn foo<'a: 'b, 'b, 'c>(x: &'static i32, mut y: &'a i32) -> E<'b, 'c> {
-   |        ^^
+   |        -- hidden type `*mut &'a i32` captures the lifetime `'a` as defined here
+...
+LL |     u.0
+   |     ^^^
 
 error: aborting due to previous error