]> git.lizzy.rs Git - rust.git/blob - tests/ui/regions/regions-early-bound-error-method.stderr
internally change regions to be covariant
[rust.git] / tests / ui / regions / regions-early-bound-error-method.stderr
1 error: lifetime may not live long enough
2   --> $DIR/regions-early-bound-error-method.rs:20:9
3    |
4 LL | impl<'a> Box<'a> {
5    |      -- lifetime `'a` defined here
6 LL |     fn or<'b,G:GetRef<'b>>(&self, g2: G) -> &'a isize {
7    |           -- lifetime `'b` defined here
8 LL |         g2.get()
9    |         ^^^^^^^^ associated function was supposed to return data with lifetime `'a` but it is returning data with lifetime `'b`
10    |
11    = help: consider adding the following bound: `'b: 'a`
12
13 error: aborting due to previous error
14