rust/src/test/ui/parser/recover-assoc-eq-missing-term.stderr

18 lines
413 B
Plaintext
Raw Normal View History

error: missing type to the right of `=`
--> $DIR/recover-assoc-eq-missing-term.rs:3:11
|
LL | bar::<Item = >();
| ^^^^^^
|
help: to constrain the associated type, add a type after `=`
|
LL | bar::<Item = TheType >();
| ^^^^^^^^^^^^^^
help: remove the `=` if `Item` is a type
|
LL | bar::<Item >();
| --
error: aborting due to previous error