diff options
author | Martin Fischer <martin@push-f.com> | 2021-11-21 08:33:52 +0100 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2021-11-21 08:36:10 +0100 |
commit | 34dc166a9bc003bad36c28aeb29b625195d20a74 (patch) | |
tree | 1a4b7fbcd673f8094b019263cbe954ef38abb97c /src/parse_trait_sig.rs | |
parent | bd6f84036426c43e08078cf11e4ee70b7714ba2f (diff) |
better errors for assoc types in where clauses
Diffstat (limited to 'src/parse_trait_sig.rs')
-rw-r--r-- | src/parse_trait_sig.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/parse_trait_sig.rs b/src/parse_trait_sig.rs index 508e131..82b8ee9 100644 --- a/src/parse_trait_sig.rs +++ b/src/parse_trait_sig.rs @@ -28,6 +28,7 @@ pub enum MethodParseError { AssocTypeInUnsupportedReturnType, UnconvertibleAssocTypeInFnInput, UnconvertibleAssocTypeInTraitBound, + UnconvertibleAssocTypeInWhereClause, UnconvertibleAssocType, } |