Sign in
rust
/
rust
/
526a91cbcc4601b92b0587405015e07b9c0d79f6
/
.
/
tests
/
ui
/
parser
/
where_with_bound.rs
blob: 4e04d8eb05cb137fc2707e1782613aa1f185f03e [
file
] [
log
] [
blame
]
//@ 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
()
{}