mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-03 00:47:36 +00:00
15 lines
276 B
Plaintext
15 lines
276 B
Plaintext
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 1 previous error
|
|
|