]> git.proxmox.com Git - rustc.git/blob - src/test/ui/issues/issue-47511.stderr
New upstream version 1.33.0+dfsg1
[rustc.git] / src / test / ui / issues / issue-47511.stderr
1 error[E0581]: return type references an anonymous lifetime which is not constrained by the fn input types
2 --> $DIR/issue-47511.rs:5:15
3 |
4 LL | fn f(_: X) -> X {
5 | ^
6 |
7 = note: lifetimes appearing in an associated type are not considered constrained
8
9 error[E0581]: return type references lifetime `'a`, which is not constrained by the fn input types
10 --> $DIR/issue-47511.rs:10:23
11 |
12 LL | fn g<'a>(_: X<'a>) -> X<'a> {
13 | ^^^^^
14
15 error: aborting due to 2 previous errors
16
17 For more information about this error, try `rustc --explain E0581`.