]> git.lizzy.rs Git - rust.git/blob - src/test/ui/regions/regions-early-bound-error.nll.stderr
Use the same message as type & const generics.
[rust.git] / src / test / ui / regions / regions-early-bound-error.nll.stderr
1 error: lifetime may not live long enough
2   --> $DIR/regions-early-bound-error.rs:23:5
3    |
4 LL | fn get<'a,'b,G:GetRef<'a, isize>>(g1: G, b: &'b isize) -> &'b isize {
5    |        -- -- lifetime `'b` defined here
6    |        |
7    |        lifetime `'a` defined here
8 LL |     g1.get()
9    |     ^^^^^^^^ function was supposed to return data with lifetime `'b` but it is returning data with lifetime `'a`
10    |
11    = help: consider adding the following bound: `'a: 'b`
12
13 error: aborting due to previous error
14