-
Notifications
You must be signed in to change notification settings - Fork 34
fix compile error on generic impl traits within types
#122
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
previously, we only checked if the other type was an `impl Trait`. now we also check the inner type, if such one exists
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM! Thanks for the test
|
im actually running into compile errors with a local project using this very autometrics branch, so not yet merging this until i figured out that bug |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good. Can you add a changelog entry?
the bug is now fixed. turns out i didnt correctly insert |
previously, we only checked if the outer type was an
impl Trait. now we also check the inner type, if such one existsfixes #121