]> git.lizzy.rs Git - rust.git/blob - src/test/ui/seq-args.stderr
Auto merge of #54720 - davidtwco:issue-51191, r=nikomatsakis
[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:14:13
3    |
4 LL | impl<T> seq<T> for Vec<T> { //~ ERROR wrong number of type arguments
5    |             ^ unexpected type argument
6
7 error[E0107]: wrong number of type arguments: expected 0, found 1
8   --> $DIR/seq-args.rs:17:10
9    |
10 LL | impl seq<bool> for u32 { //~ ERROR wrong number of type arguments
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`.