rust/tests/ui/parser/issues/issue-32214.stderr

16 lines
471 B
Plaintext
Raw Normal View History

2020-03-27 07:39:10 +01:00
error: generic arguments must come before the first constraint
--> $DIR/issue-32214.rs:3:34
2018-10-20 23:36:17 +03:00
|
LL | pub fn test<W, I: Trait<Item=(), W> >() {}
2020-03-27 21:52:09 +01:00
| ------- ^ generic argument
2020-03-27 07:39:10 +01:00
| |
2020-03-29 11:46:00 -07:00
| constraint
|
help: move the constraint after the generic argument
|
LL | pub fn test<W, I: Trait<W, Item = ()> >() {}
| ~~~~~~~~~~~~~~
2018-10-20 23:36:17 +03:00
error: aborting due to previous error