27 lines
935 B
Plaintext
27 lines
935 B
Plaintext
error[E0687]: lifetimes used in `fn` or `Fn` syntax must be explicitly declared using `<...>` binders
|
|
--> $DIR/E0687.rs:4:15
|
|
|
|
|
LL | fn foo(x: fn(&'a u32)) {}
|
|
| ^^ in-band lifetime definition
|
|
|
|
error[E0687]: lifetimes used in `fn` or `Fn` syntax must be explicitly declared using `<...>` binders
|
|
--> $DIR/E0687.rs:6:16
|
|
|
|
|
LL | fn bar(x: &Fn(&'a u32)) {}
|
|
| ^^ in-band lifetime definition
|
|
|
|
error[E0687]: lifetimes used in `fn` or `Fn` syntax must be explicitly declared using `<...>` binders
|
|
--> $DIR/E0687.rs:8:15
|
|
|
|
|
LL | fn baz(x: fn(&'a u32), y: &'a u32) {}
|
|
| ^^ in-band lifetime definition
|
|
|
|
error[E0687]: lifetimes used in `fn` or `Fn` syntax must be explicitly declared using `<...>` binders
|
|
--> $DIR/E0687.rs:13:26
|
|
|
|
|
LL | fn bar(&self, x: fn(&'a u32)) {}
|
|
| ^^ in-band lifetime definition
|
|
|
|
error: aborting due to 4 previous errors
|
|
|