summaryrefslogtreecommitdiffstats
path: root/src/test/ui/regions/regions-assoc-type-in-supertrait-outlives-container.stderr
blob: 87e33e1ccff29a2d050bfacd03abda5b37523bfb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
error: lifetime may not live long enough
  --> $DIR/regions-assoc-type-in-supertrait-outlives-container.rs:36:12
   |
LL | fn with_assoc<'a,'b>() {
   |               -- -- lifetime `'b` defined here
   |               |
   |               lifetime `'a` defined here
...
LL |     let _: &'a WithAssoc<TheType<'b>> = loop { };
   |            ^^^^^^^^^^^^^^^^^^^^^^^^^^ type annotation requires that `'b` must outlive `'a`
   |
   = help: consider adding the following bound: `'b: 'a`

error: aborting due to previous error