1error[E0308]: mismatched types
2  --> $DIR/associated-type-projection-from-supertrait.rs:27:23
3   |
4LL | fn b() { dent(ModelT, Blue); }
5   |                       ^^^^ expected struct `Black`, found struct `Blue`
6
7error[E0308]: mismatched types
8  --> $DIR/associated-type-projection-from-supertrait.rs:28:23
9   |
10LL | fn c() { dent(ModelU, Black); }
11   |                       ^^^^^ expected struct `Blue`, found struct `Black`
12
13error[E0308]: mismatched types
14  --> $DIR/associated-type-projection-from-supertrait.rs:32:28
15   |
16LL | fn f() { ModelT.chip_paint(Blue); }
17   |                            ^^^^ expected struct `Black`, found struct `Blue`
18
19error[E0308]: mismatched types
20  --> $DIR/associated-type-projection-from-supertrait.rs:33:28
21   |
22LL | fn g() { ModelU.chip_paint(Black); }
23   |                            ^^^^^ expected struct `Blue`, found struct `Black`
24
25error: aborting due to 4 previous errors
26
27For more information about this error, try `rustc --explain E0308`.
28