]> git.proxmox.com Git - rustc.git/blob - tests/ui/parser/issues/issue-32214.rs
New upstream version 1.68.2+dfsg1
[rustc.git] / tests / ui / parser / issues / issue-32214.rs
1 trait Trait<T> { type Item; }
2
3 pub fn test<W, I: Trait<Item=(), W> >() {}
4 //~^ ERROR generic arguments must come before the first constraint
5
6 fn main() { }