summaryrefslogtreecommitdiffstats
path: root/src/test/ui/type-alias-impl-trait/issue-57961.rs
blob: 472886c9caa23f0ff11101c545c83b6a4b591406 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#![feature(type_alias_impl_trait)]

type X = impl Sized;

trait Foo {
    type Bar: Iterator<Item = X>;
}

impl Foo for () {
    type Bar = std::vec::IntoIter<u32>;
    //~^ ERROR type mismatch resolving `<std::vec::IntoIter<u32> as Iterator>::Item == X
}

fn incoherent() {
    let f: X = 22_i32;
}

fn main() {}