summaryrefslogtreecommitdiffstats
path: root/src/test/ui/associated-types/associated-types-overridden-binding.rs
blob: 9a64a06c31badaefaf7408e686f9754d063ea68a (plain)
1
2
3
4
5
6
7
8
9
10
11
#![feature(trait_alias)]

trait Foo: Iterator<Item = i32> {}
trait Bar: Foo<Item = u32> {} //~ ERROR type annotations needed

trait I32Iterator = Iterator<Item = i32>;
trait U32Iterator = I32Iterator<Item = u32>; //~ ERROR type annotations needed

fn main() {
    let _: &dyn I32Iterator<Item = u32>;
}