mirror of
https://git.proxmox.com/git/rustc
synced 2026-03-28 11:51:07 +00:00
15 lines
307 B
Plaintext
15 lines
307 B
Plaintext
error: expected identifier, found `<`
|
|
--> $DIR/enum.rs:5:5
|
|
|
|
|
LL | enum<T> Foo { Variant(T) }
|
|
| ^ expected identifier
|
|
|
|
|
help: place the generic parameter name after the enum name
|
|
|
|
|
LL - enum<T> Foo { Variant(T) }
|
|
LL + enum Foo<T> { Variant(T) }
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|