Sign in
rust
/
rust
/
244fc326f23b58bc9db6bd985c59b80098ff14c1
/
.
/
tests
/
ui
/
parser
/
issues
/
issue-32214.rs
blob: 1379eeb58e6e861c87fc0c175c415739ad097d9d [
file
]
trait
Trait
<
T
>
{
type
Item
;
}
pub
fn
test
<
W
,
I
:
Trait
<
Item
=(),
W
>
>()
{}
//~^ ERROR generic arguments must come before the first constraint
fn
main
()
{
}