]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/type-arg-mismatch-due-to-impl-trait.stderr
Point at individual type arguments on arg count mismatch
[rust.git] / src / test / ui / issues / type-arg-mismatch-due-to-impl-trait.stderr
1 error[E0049]: method `foo` has 1 type parameter but its trait declaration has 0 type parameters
2   --> $DIR/type-arg-mismatch-due-to-impl-trait.rs:10:22
3    |
4 LL |     fn foo(&self, t: Self::T);
5    |           - expected 0 type parameters
6 ...
7 LL |     fn foo(&self, t: impl Clone) {}
8    |                      ^^^^^^^^^^ found 1 type parameter
9
10 error: aborting due to previous error
11
12 For more information about this error, try `rustc --explain E0049`.