rust/src/test/ui/generic/generic-impl-less-params-with-defaults.stderr

10 lines
338 B
Plaintext
Raw Normal View History

2018-08-21 20:12:23 -05:00
error[E0107]: wrong number of type arguments: expected at least 2, found 1
2018-08-08 07:28:26 -05:00
--> $DIR/generic-impl-less-params-with-defaults.rs:21:5
|
LL | Foo::<isize>::new();
| ^^^^^^^^^^^^^^^^^ expected at least 2 type arguments
error: aborting due to previous error
2018-08-21 20:12:23 -05:00
For more information about this error, try `rustc --explain E0107`.