]> git.lizzy.rs Git - rust.git/blob - tests/ui/impl-trait/multiple-lifetimes/error-handling-2.stderr
Rollup merge of #106427 - mejrs:translation_errors, r=davidtwco
[rust.git] / tests / 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`.