diff options
author | Martin Fischer <martin@push-f.com> | 2021-11-24 19:30:32 +0100 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2021-11-24 19:37:33 +0100 |
commit | 73b1ca899858b7079bec54a6e4f29941cbb8d0bd (patch) | |
tree | ff30b195bf51b6e217fd81cdb0190fc3be8e07e4 /src/lib.rs | |
parent | dcf7a21372f22011a6081c26ade0a78fb2f10b5a (diff) |
better error message for <Self as Foo>::X
Diffstat (limited to 'src/lib.rs')
-rw-r--r-- | src/lib.rs | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -229,6 +229,9 @@ pub fn dynamize(_attr: TokenStream, input: TokenStream) -> TokenStream { n ) } + MethodError::Transform(TransformError::QualifiedSelfAssociatedType) => { + return abort!(span, "dynamize does not support associated types of a qualified Self") + } MethodError::UnconvertedAssocType => { return abort!(span, "dynamize does not support associated types here") } |