2018-10-20 15:36:17 -05:00
|
|
|
error: type parameters must be declared prior to associated type bindings
|
2019-01-06 09:33:05 -06:00
|
|
|
--> $DIR/issue-32214.rs:5:34
|
2018-10-20 15:36:17 -05:00
|
|
|
|
|
2019-01-06 09:33:05 -06:00
|
|
|
LL | pub fn test<W, I: Trait<Item=(), W> >() {}
|
2019-01-11 23:45:24 -06:00
|
|
|
| ^ must be declared prior to associated type bindings
|
2019-01-24 16:24:58 -06:00
|
|
|
help: move the type parameter prior to the first associated type binding
|
|
|
|
|
|
|
|
|
LL | pub fn test<W, I: Trait<W, Item=()> >() {}
|
|
|
|
| ^^ --
|
2018-10-20 15:36:17 -05:00
|
|
|
|
|
|
|
error: aborting due to previous error
|
|
|
|
|