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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
697 B
Plaintext
Raw Normal View History

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-02-18 14:01:44 -06:00
| expected at least 2 generic arguments
|
2021-02-18 14:01:44 -06:00
note: struct defined here, with at least 2 generic parameters: `A`, `B`
--> $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
|
LL | Foo::<isize, B>::new();
| +++
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`.