Sign in
rust
/
rust
/
4ff68e41875c472d4e8a6fee8d3f52d0e27b259c
/
.
/
tests
/
ui
/
parser
/
where_with_bound.rs
blob: 4e04d8eb05cb137fc2707e1782613aa1f185f03e [
file
]
//@ edition:2015
fn
foo
<
T
>()
where
<
T
>::
Item
:
ToString
,
T
:
Iterator
{
}
//~^ ERROR generic parameters on `where` clauses are reserved for future use
//~| ERROR cannot find type `Item` in the crate root
fn
main
()
{}