summaryrefslogtreecommitdiffstats
path: root/tests/ui/generic-associated-types/equality-bound.rs
blob: fcc2da8014f878bd64d2f06c9e4b6341cb571aee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
fn sum<I: Iterator<Item = ()>>(i: I) -> i32 where I::Item = i32 {
//~^ ERROR equality constraints are not yet supported in `where` clauses
    panic!()
}
fn sum2<I: Iterator>(i: I) -> i32 where I::Item = i32 {
//~^ ERROR equality constraints are not yet supported in `where` clauses
    panic!()
}
fn sum3<J: Iterator>(i: J) -> i32 where I::Item = i32 {
//~^ ERROR equality constraints are not yet supported in `where` clauses
//~| ERROR failed to resolve: use of undeclared type `I`
    panic!()
}

fn main() {}