]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-47511.stderr
Rollup merge of #62337 - Mark-Simulacrum:fix-cpu-usage-script, r=alexcrichton
[rust.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`.