blob: 22744f6cf37fb4bf2a4d50fdc174445d70fb9ca2 [file] [log] [blame]
error: expected identifier, found `<`
--> $DIR/type.rs:5:5
|
LL | type<T> Foo = T;
| ^ expected identifier
|
help: place the generic parameter name after the type name
|
LL - type<T> Foo = T;
LL + type Foo<T> = T;
|
error: aborting due to previous error