summaryrefslogtreecommitdiffstats
path: root/tests/ui/parser/issues/issue-108109-fn-trait-missing-paren.stderr
blob: 78017babbf6095eae9dba6359c8b1f95ddca5179 (plain)
1
2
3
4
5
6
7
8
9
10
11
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

error: aborting due to 1 previous error