blob: c4287301c595ba34aa5e7a75e40dd5a7e5fa928f [file] [log] [blame] [edit]
error: expected one of `+`, `,`, `::`, `=`, or `>`, found `(`
--> $DIR/missing-closing-generics-bracket.rs:7:25
|
LL | fn foo<T: Trait<'static>() {}
| ^ expected one of `+`, `,`, `::`, `=`, or `>`
|
help: you might have meant to end the type parameters here
|
LL | fn foo<T: Trait<'static>>() {}
| +
error: aborting due to 1 previous error