2023-10-27 14:51:51 -05:00
|
|
|
error: expected one of `(`, `+`, `,`, `::`, `<`, or `{`, found `->`
|
|
|
|
--> $DIR/issue-108109-fn-trait-missing-paren.rs:3:34
|
|
|
|
|
|
|
|
|
LL | pub fn func<F>() where F: FnOnce -> () {}
|
|
|
|
| -------^^ expected one of `(`, `+`, `,`, `::`, `<`, or `{`
|
|
|
|
| | |
|
|
|
|
| | help: try adding parentheses
|
|
|
|
| `Fn` bounds require arguments in parentheses
|
|
|
|
|
2023-11-21 09:44:16 -06:00
|
|
|
error: aborting due to 1 previous error
|
2023-10-27 14:51:51 -05:00
|
|
|
|