rust/src/test/ui/parser/issue-32214.stderr

11 lines
372 B
Plaintext
Raw Normal View History

error: associated type bindings must be declared after generic parameters
2019-05-31 15:50:04 -05:00
--> $DIR/issue-32214.rs:3:25
2018-10-20 15:36:17 -05:00
|
LL | pub fn test<W, I: Trait<Item=(), W> >() {}
| -------^^^
| |
| this associated type binding should be moved after the generic parameters
2018-10-20 15:36:17 -05:00
error: aborting due to previous error