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