summaryrefslogtreecommitdiffstats
path: root/tests/ui/parser/suggest_misplaced_generics/trait.stderr
blob: ac86cfa4697047eeaf25ac355e52c02f4d089eef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
error: expected identifier, found `<`
  --> $DIR/trait.rs:5:6
   |
LL | trait<T> Foo {
   |      ^ expected identifier
   |
help: place the generic parameter name after the trait name
   |
LL - trait<T> Foo {
LL + trait Foo<T> {
   |

error: aborting due to previous error