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