]> git.lizzy.rs Git - rust.git/blob - src/test/ui/seq-args.stderr
Rollup merge of #53317 - estebank:abolish-ice, r=oli-obk
[rust.git] / src / test / ui / seq-args.stderr
1 error[E0244]: wrong number of type arguments: expected 0, found 1
2   --> $DIR/seq-args.rs:14:9
3    |
4 LL | impl<T> seq<T> for Vec<T> { //~ ERROR wrong number of type arguments
5    |         ^^^^^^ expected no type arguments
6
7 error[E0244]: wrong number of type arguments: expected 0, found 1
8   --> $DIR/seq-args.rs:17:6
9    |
10 LL | impl seq<bool> for u32 { //~ ERROR wrong number of type arguments
11    |      ^^^^^^^^^ expected no type arguments
12
13 error: aborting due to 2 previous errors
14
15 For more information about this error, try `rustc --explain E0244`.