summaryrefslogtreecommitdiffstats
path: root/src/test/ui/associated-types/bound-lifetime-in-return-only.sig.stderr
blob: 64dad461999fa79b188de2b74ea15de0e371a155 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
error[E0581]: return type references lifetime `'a`, which is not constrained by the fn input types
  --> $DIR/bound-lifetime-in-return-only.rs:12:28
   |
LL | fn sig1(_: for<'a> fn() -> &'a i32) {
   |                            ^^^^^^^

error[E0581]: return type references lifetime `'a`, which is not constrained by the fn input types
  --> $DIR/bound-lifetime-in-return-only.rs:17:39
   |
LL | fn sig2(_: for<'a, 'b> fn(&'b i32) -> &'a i32) {
   |                                       ^^^^^^^

error: aborting due to 2 previous errors

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