]> git.proxmox.com Git - rustc.git/blob - src/test/ui/impl-trait/multiple-lifetimes/error-handling-2.stderr
New upstream version 1.64.0+dfsg1
[rustc.git] / src / test / ui / impl-trait / multiple-lifetimes / error-handling-2.stderr
1 error[E0700]: hidden type for `E<'b, 'c>` captures lifetime that does not appear in bounds
2 --> $DIR/error-handling-2.rs:22:5
3 |
4 LL | fn foo<'a: 'b, 'b, 'c>(x: &'static i32, mut y: &'a i32) -> E<'b, 'c> {
5 | -- hidden type `*mut &'a i32` captures the lifetime `'a` as defined here
6 ...
7 LL | u.0
8 | ^^^
9
10 error: aborting due to previous error
11
12 For more information about this error, try `rustc --explain E0700`.