-
Notifications
You must be signed in to change notification settings - Fork 110
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
Rename generic param to avoid name collision #1705
Conversation
7455f16
to
bd5fd67
Compare
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #1705 +/- ##
==========================================
- Coverage 88.36% 88.01% -0.35%
==========================================
Files 16 16
Lines 5810 5833 +23
==========================================
Hits 5134 5134
- Misses 676 699 +23 ☔ View full report in Codecov by Sentry. |
|
||
#[derive(Clone, Copy, imp::TryFromBytes)] | ||
struct A; | ||
|
||
#[derive(imp::TryFromBytes)] | ||
#[repr(C)] | ||
enum B { | ||
A(A), | ||
A2 { a: A }, | ||
} |
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.
Could you add a UI test for the case where a field type is named ___ZerocopyAliasing
? We want to be sure this doesn't regress (i.e., start compiling successfully).
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.
So that we can unblock Fuchsia users who are depending on this, I'm going to merge this w/o extra tests, but I added the following to the release roadmap to track (note the last bullet, which links to this comment thread and to #1725):

Also makes the signatures of is_bit_valid generated for structs, unions, and enums the same.
bd5fd67
to
7af6a22
Compare
Also makes the signatures of is_bit_valid generated for structs, unions, and enums the same.