summaryrefslogtreecommitdiffstats
path: root/tests/ui/closures/2229_closure_analysis/unique-borrows-are-invariant-1.stderr
blob: 730823281abc950fcfc9dca20a05cc1692b83b1d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
error: lifetime may not live long enough
  --> $DIR/unique-borrows-are-invariant-1.rs:6:31
   |
LL | fn extend_lifetime<'a, 'b>(x: &mut (&'a str,), y: &'b str) {
   |                    --  -- lifetime `'b` defined here
   |                    |
   |                    lifetime `'a` defined here
LL |     let mut closure = |input| x.0 = input;
   |                               ^^^^^^^^^^^ assignment requires that `'b` must outlive `'a`
   |
   = help: consider adding the following bound: `'b: 'a`

error: aborting due to previous error