-
-
Notifications
You must be signed in to change notification settings - Fork 14.6k
Closed
Labels
T-rustdocRelevant to the rustdoc team, which will review and decide on the PR/issue.Relevant to the rustdoc team, which will review and decide on the PR/issue.
Description
core::mem::transmute and std::mem::transmute are both listed as const in 1.56 according to the "since" info on the right, but only the std version lists const in the actual signature.
core:
pub unsafe extern "rust-intrinsic" fn transmute<T, U>(e: T) -> U
std:
pub const unsafe extern "rust-intrinsic" fn transmute<T, U>(e: T) -> U
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
T-rustdocRelevant to the rustdoc team, which will review and decide on the PR/issue.Relevant to the rustdoc team, which will review and decide on the PR/issue.