summaryrefslogtreecommitdiffstats
path: root/src/test/ui/issues/issue-47511.stderr
blob: 5b84f7ed62c3a18239eb36191ebbe7795660b496 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
error[E0581]: return type references an anonymous lifetime, which is not constrained by the fn input types
  --> $DIR/issue-47511.rs:8:15
   |
LL | fn f(_: X) -> X {
   |               ^
   |
   = note: lifetimes appearing in an associated type are not considered constrained

error[E0581]: return type references lifetime `'a`, which is not constrained by the fn input types
  --> $DIR/issue-47511.rs:12:23
   |
LL | fn g<'a>(_: X<'a>) -> X<'a> {
   |                       ^^^^^

error: aborting due to 2 previous errors

For more information about this error, try `rustc --explain E0581`.