blob: d1956a9afb809b42609a68c977e11575137bf76f (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
error[E0271]: type mismatch resolving `<() as Super>::Assoc == ()`
--> $DIR/projection-mismatch-in-impl-where-clause.rs:13:14
|
LL | fn test() -> impl Test {
| ^^^^^^^^^ expected `()`, found `u8`
|
= note: required because of the requirements on the impl of `Test` for `()`
error: aborting due to previous error
For more information about this error, try `rustc --explain E0271`.
|