summaryrefslogtreecommitdiffstats
path: root/tests/ui/parser/suggest_misplaced_generics/existing_generics.stderr
blob: 89716e6f1ed0a28ffe32513749e4aefd52aedebe (plain)
1
2
3
4
5
6
7
8
9
10
error: expected identifier, found `<`
  --> $DIR/existing_generics.rs:5:3
   |
LL | fn<'a, B: 'a + std::ops::Add<Output = u32>> f<T>(_x: B) { }
   |   ^ expected identifier
   |
   = help: place the generic parameter name after the fn name

error: aborting due to previous error