You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
error[E0308]: mismatched types --> src/main.rs:18:14 |16 | type Assoc = impl Sized; | ---------- the expected opaque type17 | 18 | async fn f(&self) -> Self::Assoc {} | ^ | | | expected opaque type, found `()` | implicitly returns `()` as its body has no tail or `return` expression | = note: expected opaque type `impl Sized` found unit type `()`error: could not find defining uses --> src/main.rs:16:18 |16 | type Assoc = impl Sized; | ^^^^^^^^^^
The text was updated successfully, but these errors were encountered:
The following async trait fails to compile. This worked prior to #143.
The text was updated successfully, but these errors were encountered: