Fix lint message

This commit is contained in:
blyxyas 2023-01-25 19:19:16 +01:00
parent 6aa06b757d
commit 4166b7dcfe
No known key found for this signature in database
GPG key ID: 4D38170B5A2FC334
2 changed files with 2 additions and 2 deletions

View file

@ -16,7 +16,7 @@ error: '`impl Trait` used as a function parameter'
LL | pub fn c<C: Trait>(_: C, _: impl Trait) {}
| ^^^^^^^^^^
|
help: add a type paremeter, `{}`: `{}`
help: add a type paremeter
|
LL | pub fn c<C: Trait, T: Trait>(_: C, _: impl Trait) {}
| ++++++++++