16 lines
593 B
Plaintext
16 lines
593 B
Plaintext
error[E0687]: lifetimes used in `fn` or `Fn` syntax must be explicitly declared using `<...>` binders
|
|
--> $DIR/E0687_where.rs:4:31
|
|
|
|
|
LL | fn bar<F>(x: &F) where F: Fn(&'a u32) {}
|
|
| ^^ in-band lifetime definition
|
|
|
|
error[E0687]: lifetimes used in `fn` or `Fn` syntax must be explicitly declared using `<...>` binders
|
|
--> $DIR/E0687_where.rs:6:21
|
|
|
|
|
LL | fn baz(x: &impl Fn(&'a u32)) {}
|
|
| ^^ in-band lifetime definition
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0687`.
|