rust/src/test/ui/seq-args.stderr
2018-08-20 16:16:39 +01:00

15 lines
545 B
Text

error[E0244]: wrong number of type arguments: expected 0, found 1
--> $DIR/seq-args.rs:14:13
|
LL | impl<T> seq<T> for Vec<T> { //~ ERROR wrong number of type arguments
| ^ unexpected type argument
error[E0244]: wrong number of type arguments: expected 0, found 1
--> $DIR/seq-args.rs:17:10
|
LL | impl seq<bool> for u32 { //~ ERROR wrong number of type arguments
| ^^^^ unexpected type argument
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0244`.