Sign in
rust
/
rust
/
2b0cce040dc698332f3602db3dc7b7e5cf352b59
/
.
/
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
()
{}