2020-03-27 06:39:10 +00:00
|
|
|
error: generic arguments must come before the first constraint
|
|
|
|
--> $DIR/issue-32214.rs:3:34
|
2018-10-20 20:36:17 +00:00
|
|
|
|
|
2019-01-06 15:33:05 +00:00
|
|
|
LL | pub fn test<W, I: Trait<Item=(), W> >() {}
|
2020-03-27 20:52:09 +00:00
|
|
|
| ------- ^ generic argument
|
2020-03-27 06:39:10 +00:00
|
|
|
| |
|
2020-03-28 20:48:04 +00:00
|
|
|
| the constraint is provided here
|
2020-03-29 00:45:36 +00:00
|
|
|
|
|
2020-03-29 18:31:58 +00:00
|
|
|
help: move the constraint after the generic argument
|
2020-03-29 00:45:36 +00:00
|
|
|
|
|
2020-03-29 18:31:58 +00:00
|
|
|
LL | pub fn test<W, I: Trait<W, Item = ()> >() {}
|
|
|
|
| ^^^^^^^^^^^^^^
|
2018-10-20 20:36:17 +00:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|