summaryrefslogtreecommitdiffstats
path: root/src/test/ui/associated-inherent-types/normalize-projection-0.rs
blob: 50763ecddf99c34dc1a9447e7106675f5686945e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// check-pass

#![feature(inherent_associated_types)]
#![allow(incomplete_features)]

struct S<T>(T);

impl<T: O> S<T> {
    type P = <T as O>::P;
}

trait O {
    type P;
}

impl O for i32 {
    type P = String;
}

fn main() {
    let _: S<i32>::P = String::new();
}