]> git.proxmox.com Git - rustc.git/blame - src/test/ui/issues/issue-55796.nll.stderr
New upstream version 1.41.1+dfsg1
[rustc.git] / src / test / ui / issues / issue-55796.nll.stderr
CommitLineData
48663c56
XL
1error: lifetime may not live long enough
2 --> $DIR/issue-55796.rs:16:9
3 |
4LL | pub trait Graph<'a> {
5 | -- lifetime `'a` defined here
6...
7LL | Box::new(self.out_edges(u).map(|e| e.target()))
8 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ returning this value requires that `'a` must outlive `'static`
60c5eb7d
XL
9 |
10 = help: consider replacing `'a` with `'static`
48663c56
XL
11
12error: lifetime may not live long enough
13 --> $DIR/issue-55796.rs:21:9
14 |
15LL | pub trait Graph<'a> {
16 | -- lifetime `'a` defined here
17...
18LL | Box::new(self.in_edges(u).map(|e| e.target()))
19 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ returning this value requires that `'a` must outlive `'static`
60c5eb7d
XL
20 |
21 = help: consider replacing `'a` with `'static`
48663c56
XL
22
23error: aborting due to 2 previous errors
24