-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
repr and/or reflection gets confused about box mutability #4210
Labels
A-type-system
Area: Type system
Comments
catamorphism
added a commit
to catamorphism/rust
that referenced
this issue
Mar 20, 2013
Not critical for 0.6, de-milestoning |
This is still an issue. It occurs because a lone |
Closing in favour of #8720. The root cause is the normalization of both mutable/immutable managed boxes to opaque boxes. |
calebcartwright
pushed a commit
to calebcartwright/rust
that referenced
this issue
Jun 20, 2023
RalfJung
pushed a commit
to RalfJung/rust
that referenced
this issue
Mar 28, 2025
Resolve more FIXMEs
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In
core::repr
there representation generated for@mut 10
is"@10"
whereas for~mut 10
it's"~mut 10"
. Someone's disagreeing about that mutability qualifier.The text was updated successfully, but these errors were encountered: