]> git.lizzy.rs Git - rust.git/blob - src/test/ui/seq-args.stderr
Merge commit '3e7c6dec244539970b593824334876f8b6ed0b18' into clippyup
[rust.git] / src / test / ui / seq-args.stderr
1 error[E0107]: wrong number of type arguments: expected 0, found 1
2   --> $DIR/seq-args.rs:4:13
3    |
4 LL | impl<T> Seq<T> for Vec<T> {
5    |             ^ unexpected type argument
6
7 error[E0107]: wrong number of type arguments: expected 0, found 1
8   --> $DIR/seq-args.rs:7:10
9    |
10 LL | impl Seq<bool> for u32 {
11    |          ^^^^ unexpected type argument
12
13 error: aborting due to 2 previous errors
14
15 For more information about this error, try `rustc --explain E0107`.