You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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:
This is still an issue. It occurs because a lone @mut 5 is somehow treated as an opaque_box, but one inside another type like a tuple is treated correctly.
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: