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

11 lines
336 B
Plaintext
Raw Normal View History

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