]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/where_with_bound.rs
Auto merge of #57355 - arielb1:correct-subst, r=nikomatsakis
[rust.git] / src / test / ui / parser / where_with_bound.rs
1 fn foo<T>() where <T>::Item: ToString, T: Iterator { }
2 //~^ ERROR generic parameters on `where` clauses are reserved for future use
3
4 fn main() {}