]> git.lizzy.rs Git - rust.git/blob - src/test/ui/generic-associated-types/gat-in-trait-path-undeclared-lifetime.stderr
Merge commit '5ff7b632a95bac6955611d85040859128902c580' into sync-rustfmt-subtree
[rust.git] / src / test / ui / generic-associated-types / gat-in-trait-path-undeclared-lifetime.stderr
1 error[E0261]: use of undeclared lifetime name `'x`
2   --> $DIR/gat-in-trait-path-undeclared-lifetime.rs:8:35
3    |
4 LL |   fn _f(arg : Box<dyn for<'a> X<Y<'x> = &'a [u32]>>) {}
5    |        -                          ^^ undeclared lifetime
6    |        |
7    |        help: consider introducing lifetime `'x` here: `<'x>`
8
9 error[E0582]: binding for associated type `Y` references lifetime `'a`, which does not appear in the trait input types
10   --> $DIR/gat-in-trait-path-undeclared-lifetime.rs:8:33
11    |
12 LL |   fn _f(arg : Box<dyn for<'a> X<Y<'x> = &'a [u32]>>) {}
13    |                                 ^^^^^^^^^^^^^^^^^
14
15 error: aborting due to 2 previous errors
16
17 Some errors have detailed explanations: E0261, E0582.
18 For more information about an error, try `rustc --explain E0261`.