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