-
Notifications
You must be signed in to change notification settings - Fork 24
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
Ident sanitization causes name conflicts #42
Comments
This would also be fixed by #41 allowing avoiding generating a custom |
#43 has been merged, and published, which should allow avoiding this on rust >= 1.37 by using the new Lines 1616 to 1660 in 864690b
This will become the default behaviour in |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Deduplicating consecutive underscores in
sanitize_ident
causes automatic derives to fail if one attempts to derive an implementation for a typeFoo
and_Foo
. Here's a small example usingabomonation_derive
:Trying to compile this fails with the following error:
The text was updated successfully, but these errors were encountered: