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

22 lines
684 B
Text
Raw Normal View History

error[E0107]: this struct takes at least 2 type arguments but only 1 type argument was supplied
2018-12-25 08:56:47 -07:00
--> $DIR/generic-impl-less-params-with-defaults.rs:11:5
2018-08-08 14:28:26 +02:00
|
LL | Foo::<isize>::new();
| ^^^ ----- supplied 1 type argument
| |
| expected at least 2 type arguments
|
note: struct defined here, with at least 2 type parameters: `A`, `B`
--> $DIR/generic-impl-less-params-with-defaults.rs:3:8
|
LL | struct Foo<A, B, C = (A, B)>(
| ^^^ - -
help: add missing type argument
|
LL | Foo::<isize, B>::new();
| ^^^
2018-08-08 14:28:26 +02:00
error: aborting due to previous error
2018-08-21 21:12:23 -04:00
For more information about this error, try `rustc --explain E0107`.