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

16 lines
545 B
Plaintext
Raw Normal View History

2018-08-08 07:28:26 -05:00
error[E0244]: wrong number of type arguments: expected 0, found 1
2018-08-20 06:52:56 -05:00
--> $DIR/seq-args.rs:14: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
error[E0244]: wrong number of type arguments: expected 0, found 1
2018-08-20 06:52:56 -05:00
--> $DIR/seq-args.rs:17: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
For more information about this error, try `rustc --explain E0244`.