-
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
Shared-kind typarams shouldn't be copyable #984
Labels
A-type-system
Area: Type system
Comments
This also seems to imply that
|
This isn't actually required until #977 is implemented |
This is handled/superseded by the new kind system (#1177). |
ZuseZ4
pushed a commit
to EnzymeAD/rust
that referenced
this issue
Mar 7, 2023
coastalwhite
pushed a commit
to coastalwhite/rust
that referenced
this issue
Aug 5, 2023
I saw in rust-lang#81037 that when you document private items with rustdoc the `x86 AVX-512 BITALG` feature comment does not contain scape characters in the message and therefore rustdoc was emiting warnings. This fixes it.
celinval
pushed a commit
to celinval/rust-dev
that referenced
this issue
Jun 4, 2024
* Documentation: Applications (new section) * Address Jai's comments.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Because ~resource is shared kind it is not safe to copy shared kinds for which we don't know the type. This means that the ty param
@T
must not be copied. On first blush this seems quite restrictive since shared boxes may not be used as ty params when they need to be copied.The text was updated successfully, but these errors were encountered: