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

16 lines
545 B
Text
Raw Normal View History

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