]> git.proxmox.com Git - rustc.git/blame - src/test/ui/parser/issue-32214.rs
New upstream version 1.57.0+dfsg1
[rustc.git] / src / test / ui / parser / issue-32214.rs
CommitLineData
0731742a 1trait Trait<T> { type Item; }
d9579d0f 2
0731742a 3pub fn test<W, I: Trait<Item=(), W> >() {}
ba9703b0 4//~^ ERROR generic arguments must come before the first constraint
223e47cc 5
a7813a04 6fn main() { }