summaryrefslogtreecommitdiffstats
path: root/tests/ui/regions/issue-28848.stderr
blob: 0582295832f7a72e88bd6947c75b7189097fae2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
error: lifetime may not live long enough
  --> $DIR/issue-28848.rs:10:5
   |
LL | pub fn foo<'a, 'b>(u: &'b ()) -> &'a () {
   |            --  -- lifetime `'b` defined here
   |            |
   |            lifetime `'a` defined here
LL |     Foo::<'a, 'b>::xmute(u)
   |     ^^^^^^^^^^^^^^^^^^^^ requires that `'b` must outlive `'a`
   |
   = help: consider adding the following bound: `'b: 'a`

error: aborting due to 1 previous error