rust/src/test/ui/seq-args.stderr

16 lines
543 B
Plaintext
Raw Normal View History

2018-08-21 20:12:23 -05:00
error[E0107]: wrong number of type arguments: expected 0, found 1
2018-12-25 09:56:47 -06:00
--> $DIR/seq-args.rs:4:13
2018-08-08 07:28:26 -05:00
|
LL | impl<T> Seq<T> for Vec<T> { //~ ERROR wrong number of type arguments
2018-08-20 06:52:56 -05:00
| ^ unexpected type argument
2018-08-08 07:28:26 -05:00
2018-08-21 20:12:23 -05:00
error[E0107]: wrong number of type arguments: expected 0, found 1
2018-12-25 09:56:47 -06:00
--> $DIR/seq-args.rs:7:10
2018-08-08 07:28:26 -05:00
|
LL | impl Seq<bool> for u32 { //~ ERROR wrong number of type arguments
2018-08-20 06:52:56 -05:00
| ^^^^ unexpected type argument
2018-08-08 07:28:26 -05:00
error: aborting due to 2 previous errors
2018-08-21 20:12:23 -05:00
For more information about this error, try `rustc --explain E0107`.