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

12 lines
441 B
Plaintext
Raw Normal View History

error: constraints in a path segment must come after generic arguments
--> $DIR/issue-32214.rs:3:24
2018-10-20 15:36:17 -05:00
|
LL | pub fn test<W, I: Trait<Item=(), W> >() {}
| ^-------^^-^
| | |
| | this generic argument must come before the first constraint
| the first constraint is provided here
2018-10-20 15:36:17 -05:00
error: aborting due to previous error