summaryrefslogtreecommitdiffstats
path: root/src/test/ui/type-alias-impl-trait/implied_bounds.stderr
blob: 6f11b66634b293aa8331e8fd22a71f9f3e50a2e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
error: lifetime may not live long enough
  --> $DIR/implied_bounds.rs:17:9
   |
LL | impl<'a> Convert<'a> for () {
   |      -- lifetime `'a` defined here
...
LL |     fn convert<'b, T: ?Sized>(_proof: &'b WithLifetime<'a>, x: &'a T) -> &'b T {
   |                -- lifetime `'b` defined here
...
LL |         x
   |         ^ associated function was supposed to return data with lifetime `'b` but it is returning data with lifetime `'a`
   |
   = help: consider adding the following bound: `'a: 'b`

error: aborting due to previous error