]> git.lizzy.rs Git - rust.git/blob - src/test/ui/parser/where_with_bound.rs
Add 'compiler/rustc_codegen_cranelift/' from commit '793d26047f994e23415f8f6bb5686ff2...
[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 //~| ERROR cannot find type `Item` in the crate root
4
5 fn main() {}