summary refs log tree commit diff
path: root/src/test/ui/lifetimes/lifetime-errors/ex3-both-anon-regions.nll.stderr
blob: 6989acfa1963bce2c239ff5c274ac2d0ecaef0fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
error: lifetime may not live long enough
  --> $DIR/ex3-both-anon-regions.rs:2:5
   |
LL | fn foo(x: &mut Vec<&u8>, y: &u8) {
   |                    -        - let's call the lifetime of this reference `'1`
   |                    |
   |                    let's call the lifetime of this reference `'2`
LL |     x.push(y);
   |     ^^^^^^^^^ argument requires that `'1` must outlive `'2`

error: aborting due to previous error