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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
473 B
Plaintext
Raw Normal View History

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