blob: d0a9b529983b1ad89269b269b389dae8be692a64 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
error: generic arguments must come before the first constraint
--> $DIR/issue-32214.rs:3:34
|
LL | pub fn test<W, I: Trait<Item=(), W> >() {}
| ------- ^ generic argument
| |
| constraint
|
help: move the constraint after the generic argument
|
LL | pub fn test<W, I: Trait<W, Item = ()> >() {}
| ~~~~~~~~~~~~~~
error: aborting due to previous error
|