]> git.proxmox.com Git - rustc.git/blob - src/test/ui/lifetimes/lifetime-errors/ex2a-push-one-existing-name-early-bound.stderr
30826c3613c5804070767315c2bebdbd03f809e7
[rustc.git] / src / test / ui / lifetimes / lifetime-errors / ex2a-push-one-existing-name-early-bound.stderr
1 error[E0621]: explicit lifetime required in the type of `y`
2 --> $DIR/ex2a-push-one-existing-name-early-bound.rs:8:12
3 |
4 LL | fn baz<'a, 'b, T>(x: &mut Vec<&'a T>, y: &T)
5 | -- help: add explicit lifetime `'a` to the type of `y`: `&'a T`
6 ...
7 LL | x.push(y);
8 | ^ lifetime `'a` required
9
10 error: aborting due to previous error
11
12 For more information about this error, try `rustc --explain E0621`.