We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The following Rust code
enum Error1 { Reason1 = 1, Reason2 = 2, } enum Error2 { Reason1 = 3, Reason2 = 4, }
Is translated into
#define eurydice_tests_Reason1 0 #define eurydice_tests_Reason2 1 typedef uint8_t eurydice_tests_Error1; typedef eurydice_tests_Error1 eurydice_tests_Error2;
The text was updated successfully, but these errors were encountered:
Right so this is the conflation of two issues.
Fixing the latter will fix this issue. I don't think 1. is a problem
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
The following Rust code
Is translated into
The text was updated successfully, but these errors were encountered: